From b1b03390d002d4bfd87918282cded8101ff0fee1 Mon Sep 17 00:00:00 2001 From: AaronErhardt Date: Mon, 4 Nov 2024 21:14:01 +0000 Subject: [PATCH] deploy: Relm4/book@b7fb1d213bc04c5474407a3650932db7d8b0cad0 --- book/stable/component_macro/reference.html | 25 ++++++++++++++++++++++ book/stable/print.html | 25 ++++++++++++++++++++++ book/stable/searchindex.js | 2 +- book/stable/searchindex.json | 2 +- 4 files changed, 52 insertions(+), 2 deletions(-) diff --git a/book/stable/component_macro/reference.html b/book/stable/component_macro/reference.html index f6d560ec56f3..f95241616fe3 100644 --- a/book/stable/component_macro/reference.html +++ b/book/stable/component_macro/reference.html @@ -326,6 +326,31 @@

Returned wi

The returned widget can be named with the following syntax:

method = &Widget { ... } -> NAME: RETURNED_TYPE { ... }

and can be subsequently accessed via the Widgets struct.

+

In factories the returned widget is a parameter of the FactoryComponent::init_widgets() method. +You can use the #[local_ref] attribute to access it in the view macro, for example when the factory widget is a Stack which returns a StackPage:

+
    view! {
+        #[root]
+        root = gtk::Box {
+            set_orientation: gtk::Orientation::Horizontal,
+            set_halign: gtk::Align::Center,
+            set_spacing: 10,
+            set_margin_all: 12,
+
+            #[name(label)]
+            gtk::Label {
+                set_use_markup: true,
+                #[watch]
+                set_label: &format!("<b>Counter value: {}</b>", self.value),
+                set_width_chars: 3,
+            },
+
+        },
+        #[local_ref]
+        returned_widget -> gtk::StackPage {
+            set_name: &self.name,
+            set_title: &self.name,
+        }
+    }

Properties

Properties are initialized and mutated by calling methods within the widget types. Check the documentation for each widget type to see what methods are available. diff --git a/book/stable/print.html b/book/stable/print.html index 82d95adb483c..8bb95dd27cb1 100644 --- a/book/stable/print.html +++ b/book/stable/print.html @@ -4241,6 +4241,31 @@

Returned wi

The returned widget can be named with the following syntax:

method = &Widget { ... } -> NAME: RETURNED_TYPE { ... }

and can be subsequently accessed via the Widgets struct.

+

In factories the returned widget is a parameter of the FactoryComponent::init_widgets() method. +You can use the #[local_ref] attribute to access it in the view macro, for example when the factory widget is a Stack which returns a StackPage:

+
    view! {
+        #[root]
+        root = gtk::Box {
+            set_orientation: gtk::Orientation::Horizontal,
+            set_halign: gtk::Align::Center,
+            set_spacing: 10,
+            set_margin_all: 12,
+
+            #[name(label)]
+            gtk::Label {
+                set_use_markup: true,
+                #[watch]
+                set_label: &format!("<b>Counter value: {}</b>", self.value),
+                set_width_chars: 3,
+            },
+
+        },
+        #[local_ref]
+        returned_widget -> gtk::StackPage {
+            set_name: &self.name,
+            set_title: &self.name,
+        }
+    }

Properties

Properties are initialized and mutated by calling methods within the widget types. Check the documentation for each widget type to see what methods are available. diff --git a/book/stable/searchindex.js b/book/stable/searchindex.js index d28850cf6cc7..36659bee5b77 100644 --- a/book/stable/searchindex.js +++ b/book/stable/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["introduction.html#why-relm4","introduction.html#requirements","introduction.html#issues-and-feedback","introduction.html#platform-support","introduction.html#examples","introduction.html#screenshots","introduction.html#special-thanks","basic_concepts/index.html#basic-concepts","basic_concepts/model.html#model","basic_concepts/messages.html#messages","basic_concepts/messages/input.html#input-messages","basic_concepts/messages/output.html#output-messages","basic_concepts/widgets.html#widgets","basic_concepts/components.html#components","basic_concepts/components.html#the-component-trait","basic_concepts/components.html#the-simplecomponent-trait","first_app.html#your-first-app","first_app.html#application-architecture","first_app.html#messages","first_app.html#the-model","first_app.html#the-widgets","first_app.html#implement-a-component-with-simplecomponent","first_app.html#running-the-app","first_app.html#summary","first_app.html#conclusion","first_app.html#the-complete-code","component_macro.html#the-component-macro","component_macro.html#whats-different","component_macro.html#properties","component_macro.html#widgets","component_macro.html#events","component_macro.html#ui-updates","component_macro.html#constructing-the-widgets","component_macro.html#the-complete-code","tricks.html#tips-and-tricks","tricks.html#advanced-view-macro-features","tricks.html#common-pitfalls","tricks.html#message-recursion","tricks.html#sending-errors","tricks.html#common-compiler-errors","tricks.html#private-type-in-public-interface","tricks.html#method-container_add-is-missing","tricks.html#working-with-gtk-rs","tricks.html#reading-docs","tricks.html#using-the-inspector","tricks.html#demo-applications","tricks.html#our-ecosystem","tricks.html#guaranteed-helpful-our-matrix-chat","efficient_ui/index.html#efficient-ui-updates","efficient_ui/tracker.html#tracker","efficient_ui/tracker.html#the-tracker-crate","efficient_ui/tracker.html#a-tracker-example","efficient_ui/tracker.html#using-trackers-in-relm4-apps","efficient_ui/tracker.html#the-icons","efficient_ui/tracker.html#the-model","efficient_ui/tracker.html#the-view","efficient_ui/tracker.html#the-main-function","efficient_ui/tracker.html#the-track-attribute","efficient_ui/tracker.html#initializing-the-model","efficient_ui/tracker.html#the-complete-code","efficient_ui/factory.html#factory","efficient_ui/factory.html#factories-in-relm4","efficient_ui/factory.html#the-model","efficient_ui/factory.html#the-input-message-type","efficient_ui/factory.html#the-output-message-type","efficient_ui/factory.html#the-factory-implementation","efficient_ui/factory.html#creating-the-widget","efficient_ui/factory.html#initializing-the-model","efficient_ui/factory.html#the-main-component","efficient_ui/factory.html#the-component-types","efficient_ui/factory.html#initializing-the-factory","efficient_ui/factory.html#initializing-the-widgets","efficient_ui/factory.html#the-main-update-function","efficient_ui/factory.html#the-main-function","efficient_ui/factory.html#the-complete-code","efficient_ui/factory_position.html#the-position-function","efficient_ui/factory_position.html#how-it-works","efficient_ui/factory_position.html#a-chess-grid","components.html#components","components.html#when-to-use-components","components.html#message-handling","components.html#example-application","components.html#the-header-bar","components.html#the-model","components.html#the-widgets","components.html#the-close-alert","components.html#the-model-1","components.html#the-widgets-1","components.html#the-main-app","components.html#the-model-2","components.html#controllers","components.html#the-widgets-2","components.html#conclusion","components.html#the-complete-code","threads_and_async/index.html#introduction","threads_and_async/index.html#understanding-the-problem","threads_and_async/index.html#cpu-bound-and-other-synchronous-operations","threads_and_async/index.html#io-bound-and-other-async-operations","threads_and_async/worker.html#workers","threads_and_async/worker.html#implementing-a-worker","threads_and_async/commands.html#commands","threads_and_async/commands.html#synchronous-tasks","threads_and_async/commands.html#configuration","threads_and_async/async.html#async-components-and-factories","threads_and_async/async.html#the-complete-code","threads_and_async/overview.html#overview","threads_and_async/overview.html#summary","child_components.html#child-components","child_components.html#the-alert-component","child_components.html#usage","child_components.html#the-complete-code","widget_templates/index.html#widget-templates","widget_templates/index.html#defining-templates","widget_templates/index.html#template-children","widget_templates/index.html#using-templates","widget_templates/index.html#some-notes-on-orders","widget_templates/index.html#the-complete-code","widget_templates/accessing_nested_template_elements.html#accessing-nested-template-elements","widget_templates/accessing_nested_template_elements.html#the-complete-code","cli.html#command-line-interfaces","cli.html#result","cli.html#the-complete-code","gtk_rs.html#gtk-rs-overview","gtk_rs.html#gobjects","gtk_rs.html#subclassing","gtk_rs.html#properties","gtk_rs.html#signals","gtk_rs.html#settings","gtk_rs.html#lists","gtk_rs.html#composite-templates","resource_bundles.html#resource-bundles","resource_bundles.html#cargo","resource_bundles.html#data-directory","resource_bundles.html#cargotoml","resource_bundles.html#buildrs","resource_bundles.html#mainrs","continuous_integration.html#continuous-integration","continuous_integration.html#github-actions","component_macro/reference.html#the-component-macro-reference","component_macro/reference.html#public-widgets","component_macro/reference.html#the-view-macro","component_macro/reference.html#constructing-widgets","component_macro/reference.html#child-widgets","component_macro/reference.html#naming-widgets","component_macro/reference.html#conditional-widgets","component_macro/reference.html#returned-widgets","component_macro/reference.html#properties","component_macro/reference.html#trait-disambiguation","component_macro/reference.html#signals","component_macro/reference.html#blocking-signals-temporarily","component_macro/reference.html#manual-code","component_macro/reference.html#add-more-fields-to-your-widgets","component_macro/reference.html#manual-view","component_macro/expansion.html#macro-expansion","component_macro/expansion.html#the-boilerplate","component_macro/expansion.html#the-model","component_macro/expansion.html#the-message-type","component_macro/expansion.html#the-macro","component_macro/expansion.html#the-expansion","component_macro/expansion.html#the-widgets-struct","component_macro/expansion.html#the-simplecomponent-trait-implementation","component_macro/expansion.html#conclusion","component_macro/expansion.html#the-whole-macro-expansion","migrations/index.html#migration-guides","migrations/0_2_to_0_4.html#migration-from-v02-to-v04","migrations/0_2_to_0_4.html#factoryprototype","migrations/0_2_to_0_4.html#widget-macro","migrations/0_2_to_0_4.html#components","migrations/0_4_to_0_5.html#migration-from-v04-to-v05","migrations/0_4_to_0_5.html#components","migrations/0_4_to_0_5.html#senders-and-messages","migrations/0_4_to_0_5.html#initializing-components","migrations/0_4_to_0_5.html#helper-traits","migrations/0_4_to_0_5.html#factories","migrations/0_4_to_0_5.html#the-view-macro","migrations/0_4_to_0_5.html#the-widget-macro","migrations/0_4_to_0_5.html#relmapp","migrations/0_4_to_0_5.html#miscellaneous","migrations/0_4_to_0_5.html#summary","migrations/0_5_to_0_6.html#migration-from-v05-to-v06","migrations/0_5_to_0_6.html#renamed-methods","migrations/0_5_to_0_6.html#actions","migrations/0_6_to_0_7.html#migration-from-v06-to-v07","migrations/0_6_to_0_7.html#component-changes","migrations/0_6_to_0_7.html#factory-changes","migrations/0_6_to_0_7.html#example","migrations/0_6_to_0_7.html#other-changes","migrations/0_7_to_0_8.html#migration-from-v07-to-v08"],"index":{"documentStore":{"docInfo":{"0":{"body":57,"breadcrumbs":2,"title":1},"1":{"body":59,"breadcrumbs":2,"title":1},"10":{"body":55,"breadcrumbs":6,"title":2},"100":{"body":170,"breadcrumbs":4,"title":1},"101":{"body":58,"breadcrumbs":5,"title":2},"102":{"body":57,"breadcrumbs":4,"title":1},"103":{"body":300,"breadcrumbs":8,"title":3},"104":{"body":139,"breadcrumbs":7,"title":2},"105":{"body":32,"breadcrumbs":4,"title":1},"106":{"body":59,"breadcrumbs":4,"title":1},"107":{"body":72,"breadcrumbs":4,"title":2},"108":{"body":338,"breadcrumbs":4,"title":2},"109":{"body":392,"breadcrumbs":3,"title":1},"11":{"body":60,"breadcrumbs":6,"title":2},"110":{"body":458,"breadcrumbs":4,"title":2},"111":{"body":55,"breadcrumbs":4,"title":2},"112":{"body":72,"breadcrumbs":4,"title":2},"113":{"body":97,"breadcrumbs":4,"title":2},"114":{"body":98,"breadcrumbs":4,"title":2},"115":{"body":65,"breadcrumbs":4,"title":2},"116":{"body":159,"breadcrumbs":4,"title":2},"117":{"body":155,"breadcrumbs":10,"title":4},"118":{"body":178,"breadcrumbs":8,"title":2},"119":{"body":139,"breadcrumbs":6,"title":3},"12":{"body":66,"breadcrumbs":4,"title":1},"120":{"body":155,"breadcrumbs":4,"title":1},"121":{"body":98,"breadcrumbs":5,"title":2},"122":{"body":29,"breadcrumbs":6,"title":3},"123":{"body":16,"breadcrumbs":4,"title":1},"124":{"body":39,"breadcrumbs":4,"title":1},"125":{"body":45,"breadcrumbs":4,"title":1},"126":{"body":37,"breadcrumbs":4,"title":1},"127":{"body":23,"breadcrumbs":4,"title":1},"128":{"body":30,"breadcrumbs":4,"title":1},"129":{"body":29,"breadcrumbs":5,"title":2},"13":{"body":11,"breadcrumbs":4,"title":1},"130":{"body":28,"breadcrumbs":4,"title":2},"131":{"body":15,"breadcrumbs":3,"title":1},"132":{"body":55,"breadcrumbs":4,"title":2},"133":{"body":33,"breadcrumbs":3,"title":1},"134":{"body":16,"breadcrumbs":3,"title":1},"135":{"body":43,"breadcrumbs":3,"title":1},"136":{"body":13,"breadcrumbs":5,"title":2},"137":{"body":98,"breadcrumbs":5,"title":2},"138":{"body":40,"breadcrumbs":6,"title":3},"139":{"body":14,"breadcrumbs":5,"title":2},"14":{"body":12,"breadcrumbs":5,"title":2},"140":{"body":8,"breadcrumbs":5,"title":2},"141":{"body":64,"breadcrumbs":5,"title":2},"142":{"body":77,"breadcrumbs":5,"title":2},"143":{"body":25,"breadcrumbs":5,"title":2},"144":{"body":142,"breadcrumbs":5,"title":2},"145":{"body":51,"breadcrumbs":5,"title":2},"146":{"body":117,"breadcrumbs":4,"title":1},"147":{"body":38,"breadcrumbs":5,"title":2},"148":{"body":43,"breadcrumbs":4,"title":1},"149":{"body":54,"breadcrumbs":6,"title":3},"15":{"body":34,"breadcrumbs":5,"title":2},"150":{"body":26,"breadcrumbs":5,"title":2},"151":{"body":24,"breadcrumbs":7,"title":4},"152":{"body":33,"breadcrumbs":5,"title":2},"153":{"body":25,"breadcrumbs":7,"title":2},"154":{"body":8,"breadcrumbs":6,"title":1},"155":{"body":9,"breadcrumbs":6,"title":1},"156":{"body":15,"breadcrumbs":7,"title":2},"157":{"body":275,"breadcrumbs":6,"title":1},"158":{"body":8,"breadcrumbs":6,"title":1},"159":{"body":114,"breadcrumbs":7,"title":2},"16":{"body":53,"breadcrumbs":4,"title":2},"160":{"body":615,"breadcrumbs":8,"title":3},"161":{"body":16,"breadcrumbs":6,"title":1},"162":{"body":797,"breadcrumbs":8,"title":3},"163":{"body":9,"breadcrumbs":4,"title":2},"164":{"body":30,"breadcrumbs":7,"title":3},"165":{"body":14,"breadcrumbs":5,"title":1},"166":{"body":30,"breadcrumbs":6,"title":2},"167":{"body":71,"breadcrumbs":5,"title":1},"168":{"body":18,"breadcrumbs":7,"title":3},"169":{"body":109,"breadcrumbs":5,"title":1},"17":{"body":38,"breadcrumbs":4,"title":2},"170":{"body":58,"breadcrumbs":6,"title":2},"171":{"body":60,"breadcrumbs":6,"title":2},"172":{"body":39,"breadcrumbs":6,"title":2},"173":{"body":43,"breadcrumbs":5,"title":1},"174":{"body":73,"breadcrumbs":6,"title":2},"175":{"body":21,"breadcrumbs":6,"title":2},"176":{"body":10,"breadcrumbs":5,"title":1},"177":{"body":7,"breadcrumbs":5,"title":1},"178":{"body":53,"breadcrumbs":5,"title":1},"179":{"body":0,"breadcrumbs":7,"title":3},"18":{"body":11,"breadcrumbs":3,"title":1},"180":{"body":2,"breadcrumbs":6,"title":2},"181":{"body":9,"breadcrumbs":5,"title":1},"182":{"body":0,"breadcrumbs":7,"title":3},"183":{"body":36,"breadcrumbs":6,"title":2},"184":{"body":14,"breadcrumbs":6,"title":2},"185":{"body":62,"breadcrumbs":5,"title":1},"186":{"body":16,"breadcrumbs":5,"title":1},"187":{"body":29,"breadcrumbs":7,"title":3},"19":{"body":13,"breadcrumbs":3,"title":1},"2":{"body":17,"breadcrumbs":3,"title":2},"20":{"body":62,"breadcrumbs":3,"title":1},"21":{"body":333,"breadcrumbs":5,"title":3},"22":{"body":20,"breadcrumbs":4,"title":2},"23":{"body":77,"breadcrumbs":3,"title":1},"24":{"body":59,"breadcrumbs":3,"title":1},"25":{"body":171,"breadcrumbs":4,"title":2},"26":{"body":38,"breadcrumbs":4,"title":2},"27":{"body":152,"breadcrumbs":4,"title":2},"28":{"body":26,"breadcrumbs":3,"title":1},"29":{"body":36,"breadcrumbs":3,"title":1},"3":{"body":9,"breadcrumbs":3,"title":2},"30":{"body":65,"breadcrumbs":3,"title":1},"31":{"body":34,"breadcrumbs":4,"title":2},"32":{"body":21,"breadcrumbs":4,"title":2},"33":{"body":120,"breadcrumbs":4,"title":2},"34":{"body":43,"breadcrumbs":4,"title":2},"35":{"body":47,"breadcrumbs":6,"title":4},"36":{"body":13,"breadcrumbs":4,"title":2},"37":{"body":35,"breadcrumbs":4,"title":2},"38":{"body":54,"breadcrumbs":4,"title":2},"39":{"body":26,"breadcrumbs":5,"title":3},"4":{"body":44,"breadcrumbs":2,"title":1},"40":{"body":27,"breadcrumbs":6,"title":4},"41":{"body":84,"breadcrumbs":5,"title":3},"42":{"body":29,"breadcrumbs":5,"title":3},"43":{"body":47,"breadcrumbs":4,"title":2},"44":{"body":98,"breadcrumbs":4,"title":2},"45":{"body":53,"breadcrumbs":4,"title":2},"46":{"body":34,"breadcrumbs":3,"title":1},"47":{"body":26,"breadcrumbs":6,"title":4},"48":{"body":115,"breadcrumbs":6,"title":3},"49":{"body":80,"breadcrumbs":5,"title":1},"5":{"body":21,"breadcrumbs":2,"title":1},"50":{"body":59,"breadcrumbs":6,"title":2},"51":{"body":74,"breadcrumbs":6,"title":2},"52":{"body":39,"breadcrumbs":8,"title":4},"53":{"body":58,"breadcrumbs":5,"title":1},"54":{"body":89,"breadcrumbs":5,"title":1},"55":{"body":73,"breadcrumbs":5,"title":1},"56":{"body":35,"breadcrumbs":6,"title":2},"57":{"body":122,"breadcrumbs":6,"title":2},"58":{"body":36,"breadcrumbs":6,"title":2},"59":{"body":218,"breadcrumbs":6,"title":2},"6":{"body":39,"breadcrumbs":3,"title":2},"60":{"body":30,"breadcrumbs":5,"title":1},"61":{"body":70,"breadcrumbs":6,"title":2},"62":{"body":18,"breadcrumbs":5,"title":1},"63":{"body":9,"breadcrumbs":7,"title":3},"64":{"body":80,"breadcrumbs":7,"title":3},"65":{"body":80,"breadcrumbs":6,"title":2},"66":{"body":67,"breadcrumbs":6,"title":2},"67":{"body":32,"breadcrumbs":6,"title":2},"68":{"body":13,"breadcrumbs":6,"title":2},"69":{"body":41,"breadcrumbs":6,"title":2},"7":{"body":28,"breadcrumbs":4,"title":2},"70":{"body":96,"breadcrumbs":6,"title":2},"71":{"body":65,"breadcrumbs":6,"title":2},"72":{"body":106,"breadcrumbs":7,"title":3},"73":{"body":13,"breadcrumbs":6,"title":2},"74":{"body":279,"breadcrumbs":6,"title":2},"75":{"body":62,"breadcrumbs":7,"title":2},"76":{"body":96,"breadcrumbs":6,"title":1},"77":{"body":77,"breadcrumbs":7,"title":2},"78":{"body":72,"breadcrumbs":2,"title":1},"79":{"body":15,"breadcrumbs":3,"title":2},"8":{"body":32,"breadcrumbs":4,"title":1},"80":{"body":79,"breadcrumbs":3,"title":2},"81":{"body":31,"breadcrumbs":3,"title":2},"82":{"body":40,"breadcrumbs":3,"title":2},"83":{"body":55,"breadcrumbs":2,"title":1},"84":{"body":69,"breadcrumbs":2,"title":1},"85":{"body":19,"breadcrumbs":3,"title":2},"86":{"body":49,"breadcrumbs":2,"title":1},"87":{"body":108,"breadcrumbs":2,"title":1},"88":{"body":7,"breadcrumbs":3,"title":2},"89":{"body":102,"breadcrumbs":2,"title":1},"9":{"body":39,"breadcrumbs":4,"title":1},"90":{"body":160,"breadcrumbs":2,"title":1},"91":{"body":42,"breadcrumbs":2,"title":1},"92":{"body":42,"breadcrumbs":2,"title":1},"93":{"body":310,"breadcrumbs":3,"title":2},"94":{"body":104,"breadcrumbs":3,"title":1},"95":{"body":37,"breadcrumbs":4,"title":2},"96":{"body":84,"breadcrumbs":6,"title":4},"97":{"body":65,"breadcrumbs":6,"title":4},"98":{"body":26,"breadcrumbs":4,"title":1},"99":{"body":120,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"Matrix Relm4 on crates.io Relm4 docs Relm4 is an idiomatic GUI library inspired by Elm and based on gtk4-rs . It is a new version of relm that's built from scratch and is compatible with GTK4 and libadwaita . We believe that GUI development should be easy, productive and delightful. The gtk4-rs crate already provides everything you need to write modern, beautiful and cross-platform applications. Built on top of this foundation, Relm4 makes developing more idiomatic, simpler and faster and enables you to become productive in just a few hours.","breadcrumbs":"Introduction » Why Relm4","id":"0","title":"Why Relm4"},"1":{"body":"To work with Relm4, you should understand most basic language features of the Rust programming language. We recommend to at least be familiar with the content of the chapters 1, 3-6, 8, 10 and 13 of the Rust book . I also recommend reading the gtk4-rs book for getting more insight into development with gtk4-rs. Yet, knowledge of GTK4 or gtk4-rs is not required in this book. Helpful links: How to install GTK4 for Rust gtk4-rs book gtk4-rs docs Cargo: Add the packages you need to your Cargo.toml: relm4 = \"0.9.1\"\nrelm4-components = \"0.9.1\"","breadcrumbs":"Introduction » Requirements","id":"1","title":"Requirements"},"10":{"body":"Input messages are a way for our components to receive information, think of them as our inbox 📬. Let's look at it with a simple MailboxComponent example: We have our Inbox, capable of receiving emails from other people. enum Inbox { GetEmail(Email),\n} These messages are received by our component and handled in the update function. fn update(&mut self, message: Self::Input, ...) { match message { Inbox::GetEmail(email) => self.emails.push(email) }\n} Our MailboxComponent can not only receive emails from other people, but we can also send emails to ourselves. Components work in the same way, they can either receive messages from other components or send themselves messages to update their own model.","breadcrumbs":"Basic concepts » Messages » Input » Input messages","id":"10","title":"Input messages"},"100":{"body":"In this chapter, we'll have a look at commands, which are a simple yet extremely powerful mechanism to offload both CPU-bound and I/O-bound tasks to a separate runtime. Commands are background tasks that can be spawned using a ComponentSender or FactorySender. They run until they return their result as a CommandOutput message that will be processed by the component. First, we define our message type so we can use it for the associated CommandOutput type in our component. #[derive(Debug)]\nenum CommandMsg { Data(RemoteData),\n} impl Component for CommandModel { type CommandOutput = CommandMsg; Note: This only works with the Component trait. The simplified SimpleComponent trait doesn't support commands. In our update function, we start a new command using the oneshot_command() method. This method allows us to spawn a future that will yield exactly one CommandOutput message at completion. From the command, we call an asynchronous function that will handle the web request for us. Once the future completes, the command returns a CommandMsg. fn update(&mut self, msg: Self::Input, sender: ComponentSender, _: &Self::Root) { match msg { CommandModelMsg::FetchData => { sender.oneshot_command(async { // Run async background task CommandMsg::Data(fetch_data().await) }); } } } Now, we can process the CommandMsg similar to regular app updates. The method we use is called update_cmd() and is very similar to the regular update() function. Only the message type is CommandOutput instead of Input. From here, we can simply assign the result of the web request to our model. fn update_cmd( &mut self, message: Self::CommandOutput, _sender: ComponentSender, _: &Self::Root, ) { match message { CommandMsg::Data(data) => self.remote_data = data, } } That's it! It's really as simple as starting a task and processing a message on completion. With the command() method, you are even more flexible because you can send multiple messages.","breadcrumbs":"Threads and async » Commands » Commands","id":"100","title":"Commands"},"101":{"body":"You can use commands for synchronous operations, too. Compared to the asynchronous methods, we need to add the spawn_ prefix to the method name to get the synchronous version. Then, you can just pass a closure or a function pointer as task. fn update(&mut self, msg: Self::Input, sender: ComponentSender, _: &Self::Root) { match msg { CommandModelMsg::FetchData => { sender.spawn_oneshot_command(|| { // Run CPU-bound background task CommandMsg::Data(compute_result()) }); } } } The rest is identical to the asynchronous version. fn update_cmd( &mut self, message: Self::CommandOutput, _sender: ComponentSender, _: &Self::Root, ) { match message { CommandMsg::Data(data) => self.remote_data = data, } }","breadcrumbs":"Threads and async » Commands » Synchronous tasks","id":"101","title":"Synchronous tasks"},"102":{"body":"Commands run on a tokio runtime. If you spawn a lot of commands in your application or want to fine-tune the runtime, you can set two static variables at the start of your main function to override the default value. For example, Relm4 only uses one thread for asynchronous background tasks, which might not be enough. Setting RELM_THREADS to 4 will increase the thread count by 3 additional threads. Note: Setting the static variables must be done early. As soon as the runtime is initialized (which happens when it's accessed for the first time), the values cannot be changed anymore.","breadcrumbs":"Threads and async » Commands » Configuration","id":"102","title":"Configuration"},"103":{"body":"Asynchronous components and factories are almost identical compared to regular components and factories. The only major difference is that they have asynchronous init, update and update_cmd methods. This allows you to await almost everywhere from within the component. The app we will write in this chapter is also available here . Run cargo run --example simple_async from the example directory if you want to see the code in action. Because Rust doesn't support async traits yet, we need macros to add support for this feature. To tell the component macro that we're using an async trait, we pass the async parameter to it. The component macro will then utilize the async_trait crate behind the scenes to make everything work. Also, we need to use AsyncComponent instead of Component as trait. Apart from that, the first section is identical. Similarly, the factory macro needs the async parameter for async factories and the trait changes from FactoryComponent to AsyncFactoryComponent. #[relm4::component(async)]\nimpl AsyncComponent for App { type Init = u8; type Input = Msg; type Output = (); type CommandOutput = (); Most functions of async component and factory traits are asynchronous, which allows us to await on futures within those functions. Apart from that, only a couple of types need to be adjusted for the async versions of the traits, for example AsyncComponentSender and AsyncComponentParts. async fn init( counter: Self::Init, root: Self::Root, sender: AsyncComponentSender, ) -> AsyncComponentParts { tokio::time::sleep(Duration::from_secs(1)).await; let model = App { counter }; // Insert the code generation of the view! macro here let widgets = view_output!(); AsyncComponentParts { model, widgets } } Awaiting in the init function allows us to perform a late initialization. Depending on how you implement the init function, it might take a long time to complete. Not showing anything in this case can look very odd. Therefore, Relm4 allows you to specify widgets that will be displayed while your async component is initialized. If your init function doesn't await or completes quickly, you don't need to implement init_loading_widgets. fn init_loading_widgets(root: Self::Root) -> Option { view! { #[local] root { set_title: Some(\"Simple app\"), set_default_size: (300, 100), // This will be removed automatically by // LoadingWidgets when the full view has loaded #[name(spinner)] gtk::Spinner { start: (), set_halign: gtk::Align::Center, } } } Some(LoadingWidgets::new(root, spinner)) } In this case, we do some basic initialization of our root widget upfront and also add a Spinner for a nice loading animation. As soon as the init function returns, the temporary spinner will be removed automatically and the widgets from the view! macro will be inserted instead. Finally, the update function completes the trait implementation. Notably, awaiting slow futures will block the processing of further messages. In other words, the update function can only process one message afters the other. Because we use async however, this only affects each async component individually and all other components won't be affected. If you want to process multiple messages at the same time, you should consider using commands. async fn update( &mut self, msg: Self::Input, _sender: AsyncComponentSender, _root: &Self::Root, ) { tokio::time::sleep(Duration::from_secs(1)).await; match msg { Msg::Increment => { self.counter = self.counter.wrapping_add(1); } Msg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }","breadcrumbs":"Threads and async » Async components and factories » Async components and factories","id":"103","title":"Async components and factories"},"104":{"body":"use std::time::Duration; use gtk::prelude::*;\nuse relm4::{ component::{AsyncComponent, AsyncComponentParts, AsyncComponentSender}, gtk, loading_widgets::LoadingWidgets, view, RelmApp, RelmWidgetExt,\n}; struct App { counter: u8,\n} #[derive(Debug)]\nenum Msg { Increment, Decrement,\n} #[relm4::component(async)]\nimpl AsyncComponent for App { type Init = u8; type Input = Msg; type Output = (); type CommandOutput = (); view! { gtk::Window { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => Msg::Increment, }, gtk::Button { set_label: \"Decrement\", connect_clicked => Msg::Decrement, }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } fn init_loading_widgets(root: Self::Root) -> Option { view! { #[local] root { set_title: Some(\"Simple app\"), set_default_size: (300, 100), // This will be removed automatically by // LoadingWidgets when the full view has loaded #[name(spinner)] gtk::Spinner { start: (), set_halign: gtk::Align::Center, } } } Some(LoadingWidgets::new(root, spinner)) } async fn init( counter: Self::Init, root: Self::Root, sender: AsyncComponentSender, ) -> AsyncComponentParts { tokio::time::sleep(Duration::from_secs(1)).await; let model = App { counter }; // Insert the code generation of the view! macro here let widgets = view_output!(); AsyncComponentParts { model, widgets } } async fn update( &mut self, msg: Self::Input, _sender: AsyncComponentSender, _root: &Self::Root, ) { tokio::time::sleep(Duration::from_secs(1)).await; match msg { Msg::Increment => { self.counter = self.counter.wrapping_add(1); } Msg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.simple_async\"); app.run_async::(0);\n}","breadcrumbs":"Threads and async » Async components and factories » The complete code","id":"104","title":"The complete code"},"105":{"body":"Option Synchronous Async Non-blocking !Send Workers ✅ ❌ ❌ ❌ Async components and factories ❌ ✅ ❌ ✅ Commands ✅ ✅ ✅ ❌ In this context, non-blocking means you can have run multiple instances at the same time. !Send means that the types involved don't need to implement Send so you can use widgets or Rc for example.","breadcrumbs":"Threads and async » Overview » Overview","id":"105","title":"Overview"},"106":{"body":"Async components and factories: Run asynchronous tasks on the main runtime Allow other components to keep running while awaiting futures Await during initialization or updates Commands: Run tasks on a runtime in the background Supports both synchronous and asynchronous tasks Run several tasks in parallel Drop tasks as soon as the component is destroyed Workers: Handle IO-bound or CPU-intensive tasks one at the time on a different thread The update function should be executed in another thread You need a model to store state for processing messages","breadcrumbs":"Threads and async » Overview » Summary","id":"106","title":"Summary"},"107":{"body":"In this chapter, we will implement a simple alert dialog as a reusable child component. The alert example in the Relm4 repository implements a simple app for the alert component that we will write in this chapter. It's an other variant of a counter app, yet this time a dialog will be displayed if the counter does not match 42 when closing. The main difference in the implementation is, that the dialog is implemented as component that can be reused in other applications. App screenshot dark This is how the dialog looks like in the alert example: App screenshot dark If you want to see an alert component very similar to the one we will write in this chapter, have a look at the “alert” example . Run cargo run --example alert from the relm4-components/examples directory if you want to see the code in action.","breadcrumbs":"Child components » Child components","id":"107","title":"Child components"},"108":{"body":"The alert component is defined similar to the other components we've implemented in this book. Our model stores whether the component is visible and the configuration. /// Alert dialog component.\npub struct Alert { settings: AlertSettings, is_active: bool,\n} We define a Widgets, Init, Input and Output type as usual. type Widgets = AlertWidgets; type Init = AlertSettings; type Input = AlertMsg; type Output = AlertResponse; The Init param is a settings object that is used to configure the component. This maximizes the reusability of the component by letting it adapt to different use-cases. /// Configuration for the alert dialog component\npub struct AlertSettings { /// Large text pub text: String, /// Optional secondary, smaller text pub secondary_text: Option, /// Modal dialogs freeze other windows as long they are visible pub is_modal: bool, /// Sets color of the accept button to red if the theme supports it pub destructive_accept: bool, /// Text for confirm button pub confirm_label: String, /// Text for cancel button pub cancel_label: String, /// Text for third option button. If [`None`] the third button won't be created. pub option_label: Option,\n} In the Input type, this component uses #[doc(hidden)] on the Response variant. This is a useful pattern for component-internal messages that are not intended to be sent by outside callers. This allows us to update the component when the underlying dialog reports a response, but not display the Response variant in the component's documentation. /// Messages that can be sent to the alert dialog component\n#[derive(Debug)]\npub enum AlertMsg { /// Message sent by the parent to view the dialog Show, #[doc(hidden)] Response(gtk::ResponseType),\n} The Output type allows us to report the user's response back to a parent component. /// User action performed on the alert dialog.\n#[derive(Debug)]\npub enum AlertResponse { /// User clicked confirm button. Confirm, /// User clicked cancel button. Cancel, /// User clicked user-supplied option. Option,\n} The update function handles the Show message from our parent component and the Response messages generated by user interactions. It also sends the appropriate messages to the parent through the output sender. fn update(&mut self, input: AlertMsg, sender: ComponentSender) { match input { AlertMsg::Show => { self.is_active = true; } AlertMsg::Response(ty) => { self.is_active = false; sender .output(match ty { gtk::ResponseType::Accept => AlertResponse::Confirm, gtk::ResponseType::Other(_) => AlertResponse::Option, _ => AlertResponse::Cancel, }) .unwrap(); } } } When initializing the model, we conditionally set up some widgets based on the settings passed by the caller. We set is_active to false since the dialog is not currently displayed. fn init( settings: AlertSettings, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Alert { settings, is_active: false, }; let widgets = view_output!(); if let Some(option_label) = &model.settings.option_label { widgets .dialog .add_button(option_label, gtk::ResponseType::Other(0)); } if model.settings.destructive_accept { let accept_widget = widgets .dialog .widget_for_response(gtk::ResponseType::Accept) .expect(\"No button for accept response set\"); accept_widget.add_css_class(\"destructive-action\"); } ComponentParts { model, widgets } } Lastly, the view. Note that the component connects to the response signal of the underlying dialog and sends an input to itself when a response is received. view! { #[name = \"dialog\"] gtk::MessageDialog { set_message_type: gtk::MessageType::Question, #[watch] set_visible: model.is_active, connect_response[sender] => move |_, response| { sender.input(AlertMsg::Response(response)); }, // Apply configuration set_text: Some(&model.settings.text), set_secondary_text: model.settings.secondary_text.as_deref(), set_modal: model.settings.is_modal, add_button: (&model.settings.confirm_label, gtk::ResponseType::Accept), add_button: (&model.settings.cancel_label, gtk::ResponseType::Cancel), } }","breadcrumbs":"Child components » The alert component","id":"108","title":"The alert component"},"109":{"body":"With the component complete, let's use it! struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement, CloseRequest, Save, Close, Ignore,\n} #[relm4::component]\nimpl SimpleComponent for App { type Input = AppMsg; type Output = (); type Init = (); view! { main_window = gtk::ApplicationWindow { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop }, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, append = >k::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, append = >k::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, append = >k::Label { set_margin_all: 5, #[watch] set_label: &format!(\"Counter: {}\", model.counter), }, append = >k::Button { set_label: \"Close\", connect_clicked[sender] => move |_| { sender.input(AppMsg::CloseRequest); }, }, }, } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } AppMsg::Save => { println!(\"* Open save dialog here *\"); } AppMsg::Close => { relm4::main_application().quit(); } AppMsg::Ignore => (), } } fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } }\n} fn convert_alert_response(response: AlertResponse) -> AppMsg { match response { AlertResponse::Confirm => AppMsg::Close, AlertResponse::Cancel => AppMsg::Ignore, AlertResponse::Option => AppMsg::Save, }\n} fn main() { let app = RelmApp::new(\"relm4.example.alert\"); app.run::(());\n} This is mostly stuff that we've already done in previous chapters, but there are a few additional things to know about interacting with child components. Notably, we need to wrap the types of the child components in Controllers to be able to store them in the App model. struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} We initialize them with the builder pattern in the init method. fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } } We call transient_for(root) on the builder to indicate to GTK that our root widget is transient for the main application window. This allows window managers to handle the dialog window differently, e.g. by drawing it on top of other windows. See the set_transient_for documentation for more information. AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } That's it! You can find more examples of reusable components in the relm4-components crate here . You can also contribute your own reusable components to relm4-components :)","breadcrumbs":"Child components » Usage","id":"109","title":"Usage"},"11":{"body":"Output messages are sent by components to other components and handled differently depending on the type of components that receives them. We can think of them as our outbox 🚚. Let's take our previous MailboxComponent example and add the following. enum Outbox { SendEmail(Email),\n} We can modify our previous example for forward the emails to somebody else. fn update(&mut self, message: Self::Input, sender: ComponentSender) { match message { Inbox::GetEmail(email) => sender.output(Outbox::SendEmail(email)), }\n} Usually, output messages are handled by the parent component, which is the component that creates and stores our MailboxComponent. You can think of it like a tree with one component at the root and many child components that branch out.","breadcrumbs":"Basic concepts » Messages » Output » Output messages","id":"11","title":"Output messages"},"110":{"body":"Let’s review all our code in one piece one more time to see how all these parts work together: use gtk::prelude::*;\nuse relm4::prelude::*;\nuse relm4::Controller; /// Configuration for the alert dialog component\npub struct AlertSettings { /// Large text pub text: String, /// Optional secondary, smaller text pub secondary_text: Option, /// Modal dialogs freeze other windows as long they are visible pub is_modal: bool, /// Sets color of the accept button to red if the theme supports it pub destructive_accept: bool, /// Text for confirm button pub confirm_label: String, /// Text for cancel button pub cancel_label: String, /// Text for third option button. If [`None`] the third button won't be created. pub option_label: Option,\n} /// Alert dialog component.\npub struct Alert { settings: AlertSettings, is_active: bool,\n} /// Messages that can be sent to the alert dialog component\n#[derive(Debug)]\npub enum AlertMsg { /// Message sent by the parent to view the dialog Show, #[doc(hidden)] Response(gtk::ResponseType),\n} /// User action performed on the alert dialog.\n#[derive(Debug)]\npub enum AlertResponse { /// User clicked confirm button. Confirm, /// User clicked cancel button. Cancel, /// User clicked user-supplied option. Option,\n} /// Widgets of the alert dialog component.\n#[relm4::component(pub)]\nimpl SimpleComponent for Alert { type Widgets = AlertWidgets; type Init = AlertSettings; type Input = AlertMsg; type Output = AlertResponse; view! { #[name = \"dialog\"] gtk::MessageDialog { set_message_type: gtk::MessageType::Question, #[watch] set_visible: model.is_active, connect_response[sender] => move |_, response| { sender.input(AlertMsg::Response(response)); }, // Apply configuration set_text: Some(&model.settings.text), set_secondary_text: model.settings.secondary_text.as_deref(), set_modal: model.settings.is_modal, add_button: (&model.settings.confirm_label, gtk::ResponseType::Accept), add_button: (&model.settings.cancel_label, gtk::ResponseType::Cancel), } } fn init( settings: AlertSettings, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Alert { settings, is_active: false, }; let widgets = view_output!(); if let Some(option_label) = &model.settings.option_label { widgets .dialog .add_button(option_label, gtk::ResponseType::Other(0)); } if model.settings.destructive_accept { let accept_widget = widgets .dialog .widget_for_response(gtk::ResponseType::Accept) .expect(\"No button for accept response set\"); accept_widget.add_css_class(\"destructive-action\"); } ComponentParts { model, widgets } } fn update(&mut self, input: AlertMsg, sender: ComponentSender) { match input { AlertMsg::Show => { self.is_active = true; } AlertMsg::Response(ty) => { self.is_active = false; sender .output(match ty { gtk::ResponseType::Accept => AlertResponse::Confirm, gtk::ResponseType::Other(_) => AlertResponse::Option, _ => AlertResponse::Cancel, }) .unwrap(); } } }\n} struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement, CloseRequest, Save, Close, Ignore,\n} #[relm4::component]\nimpl SimpleComponent for App { type Input = AppMsg; type Output = (); type Init = (); view! { main_window = gtk::ApplicationWindow { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop }, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, append = >k::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, append = >k::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, append = >k::Label { set_margin_all: 5, #[watch] set_label: &format!(\"Counter: {}\", model.counter), }, append = >k::Button { set_label: \"Close\", connect_clicked[sender] => move |_| { sender.input(AppMsg::CloseRequest); }, }, }, } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } AppMsg::Save => { println!(\"* Open save dialog here *\"); } AppMsg::Close => { relm4::main_application().quit(); } AppMsg::Ignore => (), } } fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } }\n} fn convert_alert_response(response: AlertResponse) -> AppMsg { match response { AlertResponse::Confirm => AppMsg::Close, AlertResponse::Cancel => AppMsg::Ignore, AlertResponse::Option => AppMsg::Save, }\n} fn main() { let app = RelmApp::new(\"relm4.example.alert\"); app.run::(());\n}","breadcrumbs":"Child components » The complete code","id":"110","title":"The complete code"},"111":{"body":"Widget templates are a simple way to define reusable UI elements. When building complex UIs, they allow you to focus on the application logic instead of complex trees of widgets. Yet most importantly, widget templates help you to reduce redundant code. For example, if you use a widget with the same properties multiple times in your code, templates will make your code a lot shorter. The app we will write in this chapter is also available here . Run cargo run --example widget_template from the example directory if you want to see the code in action.","breadcrumbs":"Widget templates » Widget templates","id":"111","title":"Widget templates"},"112":{"body":"To define a widget template, you need to implement the WidgetTemplate trait for a new type. You could do this manually, but the easiest solution is to use the #[relm4::widget_template] attribute macro. The macro will create the type and implement the trait for you. For example, the following code block will create a template for a gtk::Box with a certain margin and custom CSS. #[relm4::widget_template]\nimpl WidgetTemplate for MyBox { view! { gtk::Box { set_margin_all: 10, // Make the boxes visible inline_css: \"border: 2px solid blue\", } }\n} Similarly, we can create a template for a gtk::Spinner that already spins when it's created. #[relm4::widget_template]\nimpl WidgetTemplate for MySpinner { view! { gtk::Spinner { set_spinning: true, } }\n} To create public templates, you can use #[relm4::widget_template(pub)], similar to the #[relm4::component(pub)] macro.","breadcrumbs":"Widget templates » Defining templates","id":"112","title":"Defining templates"},"113":{"body":"Templates are more than just pre-initialized widgets. They can also have children, which can be referred to later as template children. This is very useful if you use nested widget in you UI, because the template allows you to flatten the structure. In other words, no matter how deeply nested a template child is, it will always be accessible directly from the template. We'll see how this works in the next section, but first we'll create a deeply nested template. We use the templates we defined earlier by using the #[template] attribute. Also, we assign the name child_label to our last widget, which is all we need to make it a template child. In general, naming a widget in a template is all that's needed to make it a template child. #[relm4::widget_template]\nimpl WidgetTemplate for CustomBox { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, // Deeply nested! #[name = \"child_label\"] gtk::Label { set_label: \"This is a test\", } } } } } }\n}","breadcrumbs":"Widget templates » Template children","id":"113","title":"Template children"},"114":{"body":"To use templates in a component, we use the #[template] and #[template_child] attributes. In this case, we use the CustomBox type we just defined with the #[template] attribute we already used. To access its child_label template child, we only need to use the #[template_child] attribute and the name of the child. As you can see, we now have access to the child_label widget, which actually is wrapped into 4 gtk::Box widgets. We can even use assign or overwrite properties of the template and its children, similar to regular widgets. Here, we use the #[watch] attribute to update the label with the latest counter value. #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Widget template\"), set_default_width: 300, set_default_height: 100, #[template] CustomBox { gtk::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, #[template_child] child_label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), } }, } }","breadcrumbs":"Widget templates » Using templates","id":"114","title":"Using templates"},"115":{"body":"If you run this code, you will notice that the label appears above the two buttons, which is contrary to our widget definition. This happens because widget templates are initialized before other modifications happen. The CustomBox template will initialize its child_label and append it to its internal gtk::Box widget and only then the two buttons are added. However, you can work around this by using methods like prepend, append or insert_child_after (if you use a gtk::Box as container) or by splitting your templates into smaller ones. To make template children appear in the same order as they are used, widget templates would require dynamic initialization of its children. This would increase the complexity of the internal implementation by a lot (or might not be possible at all) and is therefore not planned at the moment.","breadcrumbs":"Widget templates » Some notes on orders","id":"115","title":"Some notes on orders"},"116":{"body":"use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{ gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent, WidgetTemplate,\n}; #[relm4::widget_template]\nimpl WidgetTemplate for MyBox { view! { gtk::Box { set_margin_all: 10, // Make the boxes visible inline_css: \"border: 2px solid blue\", } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for MySpinner { view! { gtk::Spinner { set_spinning: true, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for CustomBox { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, // Deeply nested! #[name = \"child_label\"] gtk::Label { set_label: \"This is a test\", } } } } } }\n} #[derive(Default)]\nstruct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Widget template\"), set_default_width: 300, set_default_height: 100, #[template] CustomBox { gtk::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, #[template_child] child_label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), } }, } } fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Self { counter }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.widget_template\"); app.run::(0);\n}","breadcrumbs":"Widget templates » The complete code","id":"116","title":"The complete code"},"117":{"body":"Starting from the version 0.6.2 , you can access nested elements on templates. Imagine a template called \"MainWindow\" which contains pages as Widget Templates: #[relm4::widget_template]\nimpl WidgetTemplate for MainWindow { view! { gtk::Window { set_title: Some(\"Nested Widget template\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, #[name(stk_pages)] gtk::Stack { set_margin_all: 7, #[template] #[name = \"home_page\"] add_child = &HomePage {} -> { set_name: \"main\", }, #[template] #[name = \"settings_page\"] add_child = &SettingsPage {} -> { set_name: \"settings\", }, }, }, } }\n} SettingsPage and HomePage are also a widget template: #[relm4::widget_template]\nimpl WidgetTemplate for HomePage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_go_settings\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"emblem-system-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for SettingsPage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_dark_mode\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"night-light-symbolic\"), }, }, #[name = \"btn_go_homepage\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"user-home-symbolic\"), }, }, } }\n} If you want to handle MainWindow->SettingsPage->btn_dark_mode's clicked event, you can simply do it like this: #[derive(Default)]\nstruct AppModel { current_page: &'static str,\n} #[derive(Debug)]\nenum Message { PageHome, PageSettings, DarkMode,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = Message; type Output = (); view! { #[template] MainWindow { #[template_child] settings_page.btn_dark_mode { connect_clicked => Message::DarkMode }, #[template_child] settings_page.btn_go_homepage { connect_clicked => Message::PageHome }, #[template_child] home_page.btn_go_settings { connect_clicked => Message::PageSettings }, #[template_child] stk_pages { #[watch] set_visible_child_name: model.current_page, } }, }","breadcrumbs":"Widget templates » Accessing Nested Template Elements » Accessing Nested Template Elements","id":"117","title":"Accessing Nested Template Elements"},"118":{"body":"use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmWidgetExt, SimpleComponent, WidgetTemplate}; #[relm4::widget_template]\nimpl WidgetTemplate for HomePage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_go_settings\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"emblem-system-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for SettingsPage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_dark_mode\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"night-light-symbolic\"), }, }, #[name = \"btn_go_homepage\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"user-home-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for MainWindow { view! { gtk::Window { set_title: Some(\"Nested Widget template\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, #[name(stk_pages)] gtk::Stack { set_margin_all: 7, #[template] #[name = \"home_page\"] add_child = &HomePage {} -> { set_name: \"main\", }, #[template] #[name = \"settings_page\"] add_child = &SettingsPage {} -> { set_name: \"settings\", }, }, }, } }\n} #[derive(Default)]\nstruct AppModel { current_page: &'static str,\n} #[derive(Debug)]\nenum Message { PageHome, PageSettings, DarkMode,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = Message; type Output = (); view! { #[template] MainWindow { #[template_child] settings_page.btn_dark_mode { connect_clicked => Message::DarkMode }, #[template_child] settings_page.btn_go_homepage { connect_clicked => Message::PageHome }, #[template_child] home_page.btn_go_settings { connect_clicked => Message::PageSettings }, #[template_child] stk_pages { #[watch] set_visible_child_name: model.current_page, } }, } fn init( _init_param: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Self { current_page: \"main\", }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Message, _sender: ComponentSender) { match msg { Message::DarkMode => { println!(\"Mode changed\"); } Message::PageHome => { self.current_page = \"main\"; } Message::PageSettings => { self.current_page = \"settings\"; } } }\n} fn main() {}","breadcrumbs":"Widget templates » Accessing Nested Template Elements » The complete code","id":"118","title":"The complete code"},"119":{"body":"The handling of CLI arguments in Relm4 has some specifics you should be aware of. The first one is that Relm4/GTK tries to parse the arguments again even if you parsed them yourself already. This means the program will crash with an error like Unknown option --non-gtk-arg. To fix this you can use the with_args method to provide the arguments the GTK app should parse. The easiest way is to just provide an empty Vec but this has the disadvantage that the standard GTK arguments don't work anymore. We will now make it work in combination with the popular clap crate. To be precise we will use the derive feature which you can learn about in the clap documentation but it works with the builder pattern too of course. To pass a Vec of GTK arguments we need to separate the arguments we want to consume ourselves from those we want to pass to GTK. In clap you can achieve this using a combination of allow_hyphen_values and trailing_var_arg . #[derive(Parser, Debug)]\n#[command(version, about, long_about = None)]\nstruct Args { /// some argument to test #[arg(long)] non_gtk_arg: bool, /// Unknown arguments or everything after -- gets passed through to GTK. #[arg(allow_hyphen_values = true, trailing_var_arg = true)] gtk_options: Vec,\n} Now in our main function we can parse the CLI arguments using Args::parse() and pass args.gtk_options to GTK/Relm4. The first argument is (as per convention) the program invocation so we need to add that first: let program_invocation = std::env::args().next().unwrap(); let mut gtk_args = vec![program_invocation]; gtk_args.extend(args.gtk_options.clone()); let app = RelmApp::new(\"relm4.test.helloworld_cli\"); app.with_args(gtk_args).run::(());","breadcrumbs":"Command Line Interfaces » Command Line Interfaces","id":"119","title":"Command Line Interfaces"},"12":{"body":"GTK4 provides widgets as building blocks for your UI, like buttons, input fields or text areas. They can visualize data and also receive user inputs. In Relm4, user inputs are usually directly translated into input messages for our components. It's important to understand that widgets behave similar to Rc . Most importantly, this means that: Cloning a widget doesn't create a new instance, but just increases the reference count. Widgets are kept alive automatically. Dropping widgets that are still used somewhere does not destroy them, but just decreases the reference count. Widgets are not thread-safe. Widgets don't implement Send and can only be used on the main thread.","breadcrumbs":"Basic concepts » Widgets » Widgets","id":"12","title":"Widgets"},"120":{"body":"To compile, run and pass arguments to the built binary in one command we can use cargo run -- and pass our arguments after that. If you wonder what the -- means: This is the end of options convention : \"The first -- argument that is not an option-argument should be accepted as a delimiter indicating the end of options. Any following arguments should be treated as operands, even if they begin with the '-' character.\" We can now look at the result using cargo run -- --help: Usage: cli [OPTIONS] [GTK_OPTIONS]... Arguments: [GTK_OPTIONS]... Unknown arguments or everything after -- gets passed through to GTK Options: --non-gtk-arg some argument to test -h, --help Print help -V, --version Print version This is the help text provided by clap. If you want to see the GTK help text you can use cargo run -- -- --help: Usage: cli [OPTION?] Help Options: -h, --help Show help options --help-all Show all help options --help-gapplication Show GApplication options And if the GTK option is unique and not used by your program the (second) -- is not needed anymore, e.g. cargo run -- --help-all: Usage: cli [OPTION?] Help Options: -h, --help Show help options --help-all Show all help options --help-gapplication Show GApplication options GApplication Options: --gapplication-service Enter GApplication service mode (use from D-Bus service files) Of course you can replace cargo run -- by your binary name later, e.g.: your-cool-app --help-all.","breadcrumbs":"Command Line Interfaces » Result","id":"120","title":"Result"},"121":{"body":"Here is a minimal working example code with some debug output: use clap::Parser;\nuse gtk::prelude::GtkWindowExt;\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, SimpleComponent}; struct AppModel {} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = (); type Output = (); view! { gtk::Window { set_title: Some(\"Hello world with CLI\"), set_default_width: 300, set_default_height: 100, gtk::Label { set_label: \"Hello world!\", } } } fn init( _init: Self::Init, root: Self::Root, _sender: ComponentSender, ) -> ComponentParts { let model = AppModel {}; let widgets = view_output!(); ComponentParts { model, widgets } }\n} #[derive(Parser, Debug)]\n#[command(version, about, long_about = None)]\nstruct Args { /// some argument to test #[arg(long)] non_gtk_arg: bool, /// Unknown arguments or everything after -- gets passed through to GTK. #[arg(allow_hyphen_values = true, trailing_var_arg = true)] gtk_options: Vec,\n} fn main() { let args = Args::parse(); dbg!(&args); let program_invocation = std::env::args().next().unwrap(); let mut gtk_args = vec![program_invocation]; gtk_args.extend(args.gtk_options.clone()); let app = RelmApp::new(\"relm4.test.helloworld_cli\"); app.with_args(gtk_args).run::(());\n}","breadcrumbs":"Command Line Interfaces » The complete code","id":"121","title":"The complete code"},"122":{"body":"So far, we only discussed which features Relm4 provides. Yet, Relm4 is based on GTK, which itself has many useful features. Let’s have a look at it! This is just an overview. I’ve linked the relevant sections of the gtk-rs book but if you want to get familiar with all the features, I recommend reading the book from the start.","breadcrumbs":"gtk-rs overview » gtk-rs overview","id":"122","title":"gtk-rs overview"},"123":{"body":"GTK is an object-oriented framework that uses the GObject library to implement objects. GObjects have some really useful features that we will discuss in the following sections.","breadcrumbs":"gtk-rs overview » GObjects","id":"123","title":"GObjects"},"124":{"body":"Like many other OOP frameworks or languages, GObjects can inherit from other GObjects. This is called subclassing. In the case of GTK, that’s really helpful because it allows us to create custom widgets. For example, you could use subclassing to create your own button widget that acts as a counter. Or you can create a custom application window that better suits your application. Read more about subclassing in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Subclassing","id":"124","title":"Subclassing"},"125":{"body":"Each GObject can have properties that work similar to the fields of a structure in Rust. You can set them and you can read (get) them. But one thing that's particularly cool is that properties can be bound to other properties. For example, you could bind the \"visible\" property of a widget to the \"active\" property of a gtk::ToggleButton. This would allow you to show or hide the widget using the toggle button and the best part is, that it's done fully automatically! Read more about properties in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Properties","id":"125","title":"Properties"},"126":{"body":"GObjects can not only have properties but also signals. Actually, we've been using signals all the time, for example, by using the connect_clicked method on a button. This method simply adds an event handler function for the \"click\" signal. You can create your own signals in custom widgets. You can also use emit to emit signals on you widgets manually. Read more about signals in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Signals","id":"126","title":"Signals"},"127":{"body":"Most applications need to store settings at some point. GTK makes that pretty simple. You can use gtk::Settings to store your settings and keep them stored after your app has been closed. Read more about settings in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Settings","id":"127","title":"Settings"},"128":{"body":"Relm4 has factories for generating widgets from collections of data. GTK has a similar mechanism that should be used for large list. Because GTK knows which widgets of a list are actually shown it can optimize the rendering and memory usage a lot better. Read more about lists in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Lists","id":"128","title":"Lists"},"129":{"body":"Relm4 leaves it up to you how to create your UI. You can do it manually like in our first app, you can do with the widget macro or you can use the interface builder from GTK. With composite templates, you can use a XML file to specify your widgets and properties. Read more about the composite templates in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Composite templates","id":"129","title":"Composite templates"},"13":{"body":"Components are the fundamental building blocks of Relm4. To create a component you need to implement the Component trait.","breadcrumbs":"Basic concepts » Components » Components","id":"13","title":"Components"},"130":{"body":"Some Relm4 apps require static assets or resources (such as icons or images) to function. In GTK apps, static assets are transformed into GResource bundles, which are then loaded by the app. This guide shows how to set up GResource bundles within a Relm4 project.","breadcrumbs":"Resource Bundles » Resource Bundles","id":"130","title":"Resource Bundles"},"131":{"body":"This demonstrates a Cargo-only approach to including resources (i.e. it does not require extra build tools like Meson, or out-of-band shell scripts).","breadcrumbs":"Resource Bundles » Cargo","id":"131","title":"Cargo"},"132":{"body":"We add the static resources (in this example, icon files), plus a gresource descriptor, to the project's data folder: data/ icons/ icon-foo.svg icon-bar.svg icons.gresource.xml The icons are placed under the data/icons directory. The icons.gresource.xml file looks like this (adapt it as required, e.g. using -symbolic icon names): \n icons/icon-foo.svg icons/icon-bar.svg \n","breadcrumbs":"Resource Bundles » data directory","id":"132","title":"data directory"},"133":{"body":"In Cargo.toml, we add a build dependency on glib-build-tools. This gives us access to the glib_build_tools::compile_resources function which we will need later: [package]\nname = \"foobar\" [build-dependencies]\nglib-build-tools = \"0.17.10\" Note: you should ensure that the glib-build-tools version aligns with the general GLib version you are building for.","breadcrumbs":"Resource Bundles » Cargo.toml","id":"133","title":"Cargo.toml"},"134":{"body":"In build.rs, we call the compile_resources function which creates a GResource bundle from the icons: use glib_build_tools::compile_resources; fn main() { compile_resources( &[\"data\"], \"data/icons.gresource.xml\", \"icons.gresource\", );\n}","breadcrumbs":"Resource Bundles » build.rs","id":"134","title":"build.rs"},"135":{"body":"In main.rs (or wherever you initialise your Relm4 app), we load the icons.gresource bundle that Cargo generates: fn initialize_custom_icons() { gio::resources_register_include!(\"icons.gresource\").unwrap(); let display = gdk::Display::default().unwrap(); let theme = gtk::IconTheme::for_display(&display); theme.add_resource_path(\"/com/example/Foobar/icons\");\n} fn main() { let app = RelmApp::new(\"com.example.Foobar\"); // (optional) initialize default icons relm4_icons::initialize_icons(); // custom icons initialize_custom_icons();\n} It should now be possible to reference the resources by name within your app, for example: view! { gtk::Button { set_icon_name: \"icon-foo\" }\n}","breadcrumbs":"Resource Bundles » main.rs","id":"135","title":"main.rs"},"136":{"body":"We recommend that you establish a CI build for your Relm4 app. This guide describes how to do it, and the caveats you must observe to make the build work.","breadcrumbs":"Continuous Integration guide » Continuous Integration","id":"136","title":"Continuous Integration"},"137":{"body":"Starting with Relm 0.6.1, you can set up a CI build for your app on GitHub Actions. We recommend that you use the gtk4-rs container approach, as shown below: name: Rust on: push: branches: [ \"main\" ] pull_request: branches: [ \"main\" ] jobs: build: runs-on: ubuntu-latest container: image: ghcr.io/gtk-rs/gtk4-rs/gtk4:latest # TODO enable minor version tags / pinning steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable - name: Build run: cargo build - name: Test run: cargo test Note: You can alternatively just run the cargo build on the ubuntu-latest base image. However, this will tie your Relm app's GNOME and GTK version to Ubuntu's 2-year LTS release cycle, so you will not be able to use newer GNOME / GTK versions in the meantime. We therefore recommend that most projects use the gtk4-rs container approach instead.","breadcrumbs":"Continuous Integration guide » GitHub Actions","id":"137","title":"GitHub Actions"},"138":{"body":"There are quite a few of examples where the component macro is used in this book. Still, we haven't covered everything in the previous chapters, and it's also nice to have all the information in one place. This chapter serves as an exhaustive reference for the component macro syntax. The component attribute macro expects a trait implementation of SimpleComponent, Component, or FactoryComponent on a user-provided struct that holds the component's state.","breadcrumbs":"Component macro reference » The component macro reference","id":"138","title":"The component macro reference"},"139":{"body":"If you want to make the Widgets struct generated by the macro public, you can provide pub (or any other visibility) as an argument to the attribute macro. #[relm4::component(pub)]","breadcrumbs":"Component macro reference » Public widgets","id":"139","title":"Public widgets"},"14":{"body":"The Component trait is the base of every component inside Relm4, it defines how a component should behave, communicate and produce widgets.","breadcrumbs":"Basic concepts » Components » The Component trait","id":"14","title":"The Component trait"},"140":{"body":"The view! macro allows us to easily define widgets and mutate their properties.","breadcrumbs":"Component macro reference » The view! macro","id":"140","title":"The view! macro"},"141":{"body":"All components must have a root widget in their view! macro, such as gtk::Window or gtk::Box. Widgets are constructed by providing the type of the widget followed by curly braces. This will construct the widget using its Default implementation. view! { gtk::Window { ... }\n} Some, widgets don't have a Default implementation or it may be more convenient to use a constructor method. In this case, you can use the following syntax: // Constructor method\ngtk::Label::new(Some(\"Label from constructor method\")) { /* ... */ } // Builder pattern\ngtk::Label::builder() .label(\"Label from builder pattern\") .selectable(true) .build() { /* ... */ } You can also use regular functions. Because macro often needs to know the type of the widget for code generation, you may need to specify it. set_property_name = new_box() -> gtk::Box { ... }","breadcrumbs":"Component macro reference » Constructing widgets","id":"141","title":"Constructing widgets"},"142":{"body":"Child widgets are added by nesting the declarations. view! { gtk::Window { gtk::Box { } }\n} If another method is needed to assign a child, you can call it instead like this: gtk::Box { // Use append append = >k::Label { ... }\n} Use & in front of the widget type to assign a reference. A common mistake is to accidentally use : instead of = for assigning widgets. If the widget needs to be wrapped in another type (commonly Option), use the wrap attribute: #[wrap(Some)]\nset_property_name = gtk::Box { ... } Sometimes you need to pass additional arguments along with the widget, for example when calling gtk::Grid::attach . You can do this by providing the additional arguments in square brackets after the method: gtk::Grid { // Attach the label to a grid attach[0, 0, 1, 2]= >k::Label { ... }\n} This will expand to __grid.attach(__label, 0, 0, 1, 2)","breadcrumbs":"Component macro reference » Child widgets","id":"142","title":"Child widgets"},"143":{"body":"Widgets may be given a name with the name attribute. These names are accessible as fields on the Widgets struct generated by the macro. #[name = \"important_label\"]\ngtk::Label { ... } // ... let widgets = view_output!();\nlet label = &widgets.important_label; Names can also be assigned with this syntax: set_child: important_label = gtk::Label { ... }","breadcrumbs":"Component macro reference » Naming widgets","id":"143","title":"Naming widgets"},"144":{"body":"The view macro allows you to include if and match statements for conditionally showing widgets. Internally, the macro will use a gtk::Stack, so you can also use different transition types . if model.value % 2 == 0 { gtk::Label { set_label: \"The value is even\", }, gtk::Label { set_label: \"The value is odd\", }\n} // Use a transition type to set an animation when the visible widget changes\n#[transition = \"SlideRight\"]\nmatch model.value { 0..=9 => { gtk::Label { set_label: \"The value is below 10\", }, } _ => { gtk::Label { set_label: \"The value is equal or above 10\", }, }\n} If your conditional widget uses a match statement over an enum, you can destructure the enum in the match arms to access its variables with the help of the #[track] or #[watch] macros: enum Foo { Bar(f32), Baz(String),\n} struct FooView { foo: Foo\n} impl Component for FooView { type Init = Foo; // snip view! { #[root] gtk::Box { append = match &model.foo { Foo::Bar(num_value) => { gtk::SpinButton { // adding the `watch` macro lets you reference the destructured variables #[watch] set_value: num_value } } Foo::Baz(str_value) => { gtk::Label { #[watch] set_text: &str_value } } } } } // snip\n} Please note: if you attempt to destructure in the normal way - without the track or watch macros - you will get a compilation error, and Rust will 'fail to see' the destructured variables at the point where your code uses them. This is due to limitations in Relm4's component initialization strategy. Please ensure that you use one of those macros to avoid this.","breadcrumbs":"Component macro reference » Conditional widgets","id":"144","title":"Conditional widgets"},"145":{"body":"Sometimes, methods used for assigning widgets return another widget. For example, gtk::Stack::add_child() allows you to add a widget to the stack, but also returns a gtk::StackPage widget. To get access to this widget, you can use a special syntax of the view macro: gtk::Stack { add_child = >k::Label { set_label: \"placeholder\", } -> { // Access the returned widgets (in this case gtk::StackPage) set_title: \"page title\", }\n} The returned widget can be named with the following syntax: method = &Widget { ... } -> NAME: RETURNED_TYPE { ... } and can be subsequently accessed via the Widgets struct.","breadcrumbs":"Component macro reference » Returned widgets","id":"145","title":"Returned widgets"},"146":{"body":"Properties are initialized and mutated by calling methods within the widget types. Check the documentation for each widget type to see what methods are available. Generally properties are set via setter methods, but any methods on the widget can also be called. Many of these methods are part of an extension trait associated with the widget type. These traits must be in scope to call their methods. For example, if you want to use the set_default_width method from the GtkWindowExt trait, you must import the trait directly or glob import it from the prelude (use gtk::prelude::*;). To initialize a property with a value: set_property_name: value, Initialize a property only if its value is Some, and do nothing if it's None: set_property_name?: value, Call a method that has multiple arguments: set_property_name: (value1, value2, ...), Initialize and automatically update a property. #[watch]\nset_property_name: (value1, value2, ...), Initialize and automatically update a property with a tracker. The track_expression can be any expression that returns a bool. If it's true, it indicates that the method should be called: #[track(track_expression)]\nset_property_name: (value1, value2, ...), Initialize a property by iterating over an iterator. You can use this for repeated calls to setter functions, like add_class_name in case you have multiple class names in a Vec. #[iterate]\nset_property_name: iterator,","breadcrumbs":"Component macro reference » Properties","id":"146","title":"Properties"},"147":{"body":"It is possible that several traits implement the same method for a type. If both traits are in scope and you want to use the duplicated method name, you need to tell Rust which trait it should use. To specify the intended trait, use the TraitName::method syntax, similar to Rust's fully qualified syntax for trait disambiguation . You can also use the full path of the trait if desired.","breadcrumbs":"Component macro reference » Trait disambiguation","id":"147","title":"Trait disambiguation"},"148":{"body":"When connecting signals emitted by widgets you can clone fields that you need in the closure (for example, the component sender) by listing the corresponding fields in square brackets. connect_name[cloned_var1, cloned_var2, ...] => move |arg1, arg2, ...| { ... } There is a shorthand for sending a message per event handlers like ComponentSender or AsyncComponentSender. connect_clicked => AppMsg::Increase, A member of a struct or the result of a method can also be used inside the closure by assigning it to a variable. connect_name[sender = components.sender.clone()] => move |...| { ... }","breadcrumbs":"Component macro reference » Signals","id":"148","title":"Signals"},"149":{"body":"Some signals are not only emitted after a user interaction, but also when you change values though your code, for example by using #[watch]. This might not be the desired behavior and can even cause your application to freeze under certain circumstances. To avoid this, you can name signal handlers by using an @ and a name after the signal closure. Then, you can use the signal handler name in the #[block_signal(handler_name)] attribute to deactivate the signal handler while you edit a value. gtk::ToggleButton { set_label: \"Counter is even\", #[watch] #[block_signal(toggle_handler)] set_active: counter.value % 2 == 0, connect_toggled[sender] => move |_| { sender.input(AppMsg::Increment); } @toggle_handler, },","breadcrumbs":"Component macro reference » Blocking signals temporarily","id":"149","title":"Blocking signals temporarily"},"15":{"body":"The SimpleComponent trait is a convenience trait that implements the Component trait, but removes some advanced features that are not relevant for most use-cases. For each implementation of SimpleComponent, Relm4 will automatically implement Component as well. Thus, it can also be used instead of Component. This mechanism is called blanket implementation and is used for traits like From in the standard library as well.","breadcrumbs":"Basic concepts » Components » The SimpleComponent trait","id":"15","title":"The SimpleComponent trait"},"150":{"body":"Sometimes the macro isn't flexible enough. In this case, you can always use manual code that will not be modified by the macro. Here's a list of all the options available. #[relm4_macros::component]\nimpl SimpleComponent for App { // ... view! { // ... } additional_fields! { // ... } fn pre_view() { // ... } fn post_view() { // ... }\n}","breadcrumbs":"Component macro reference » Manual code","id":"150","title":"Manual code"},"151":{"body":"The widgets struct is automatically generated by the macro, but you can also add fields manually. additional_fields! { test: u8,\n} Initialize the variable in the init function by naming a local variable like your custom field. let test = 0; let widgets = view_output!();","breadcrumbs":"Component macro reference » Add more fields to your widgets","id":"151","title":"Add more fields to your widgets"},"152":{"body":"You can also implement your own view logic, which will be added to the view code that the macro generates. Code inside pre_view() will run before the code of the macro, and post_view() will run after it. Code inside these \"functions\" isn't like a normal function! The macro disallows returning early in pre_view to ensure that the code of the macro will always be executed.","breadcrumbs":"Component macro reference » Manual view","id":"152","title":"Manual view"},"153":{"body":"To better understand the component macro, we will examine how the different parts of the macro are translated into real Rust code (aka the macro expansion). Therefore, we will write a small app that uses as many component macro features as possible.","breadcrumbs":"Component macro reference » Macro expansion » Macro expansion","id":"153","title":"Macro expansion"},"154":{"body":"First, let's have a look at the parts of the code that are later used by the macro.","breadcrumbs":"Component macro reference » Macro expansion » The boilerplate","id":"154","title":"The boilerplate"},"155":{"body":"The model simply stores a counter. #[tracker::track]\nstruct AppModel { value: u8,\n}","breadcrumbs":"Component macro reference » Macro expansion » The model","id":"155","title":"The model"},"156":{"body":"The message type is the same as in our first app. It includes a message to increment and decrement the counter. #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n}","breadcrumbs":"Component macro reference » Macro expansion » The message type","id":"156","title":"The message type"},"157":{"body":"Before we break it down into smaller parts, let's take a look at the macro as a whole. If you're unfamiliar with the macro syntax, check out the previous chapter. There's a lot here, but that's because the macro supports a lot of functions! #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); view! { #[root] #[name(main_window)] gtk::Window { set_title: Some(\"Macro reference example\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, append: inc_button = >k::Button { set_label: \"Increment\", // Only set this if `icon_name` is Some set_icon_name?: icon_name, connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); } }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); } }, gtk::Grid { attach[1, 1, 1, 1] = >k::Label { // Alternative: #[track = \"counter.value % 10 == 0\"] #[track(counter.value % 10 == 0)] set_label: &format!(\"Grid works! ({})\", counter.value), } }, // A conditional widget // Alternative: #[transition = \"SlideLeft\"] #[transition(SlideLeft)] append = if counter.value % 2 == 0 { gtk::Label { set_label: \"Value is even\", } } else if counter.value % 3 == 0 { gtk::Label { set_label: \"Value is dividable by 3\", } } else { gtk::Label { set_label: \"Value is odd\", } }, #[transition = \"SlideRight\"] append: match_stack = match counter.value { (0..=2) => { gtk::Label { set_label: \"Value is smaller than 3\", } }, _ => { gtk::Label { set_label: \"Value is higher than 2\", } } }, append = >k::Label, gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(), gtk::Label::new(Some(\"Constructors work!\")), /// Counter label gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", counter.value), #[track] set_margin_all: counter.value.into(), }, gtk::ToggleButton { set_label: \"Counter is even\", #[watch] #[block_signal(toggle_handler)] set_active: counter.value % 2 == 0, connect_toggled[sender] => move |_| { sender.input(AppMsg::Increment); } @toggle_handler, }, #[local] local_label -> gtk::Label { set_opacity: 0.7, }, #[local_ref] local_ref_label -> gtk::Label { set_opacity: 0.7, set_size_request: (40, 40), }, } }, gtk::Window { set_title: Some(\"Another window\"), set_default_width: 300, set_default_height: 100, set_transient_for: Some(&main_window), // Empty args hide: (), #[watch] set_visible: counter.value == 42, #[name = \"my_label_name\"] gtk::Label { set_label: \"You made it to 42!\", } } } additional_fields! { test_field: u8, } // Initialize the UI. fn init( init: Self::Init, renamed_root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; // Set icon name randomly to Some(\"go-up-symbolic\") or None let icon_name = rand::random::().then_some(\"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model: counter, widgets, } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } }\n}","breadcrumbs":"Component macro reference » Macro expansion » The macro","id":"157","title":"The macro"},"158":{"body":"The macro expansion is not supposed to be readable, so the code might look a bit ugly.","breadcrumbs":"Component macro reference » Macro expansion » The expansion","id":"158","title":"The expansion"},"159":{"body":"The fields of the widgets struct cover all widgets we created, plus the additional fields we added manually. Named fields like main_window and inc_button keep their names. Unnamed fields will get automatically generated names with an unique ID. You should never refer to unnamed fields in your code because their names might change. At the end, we can find the additional field called test_field that we added manually. #[allow(dead_code)]\nstruct AppWidgets { #[allow(missing_docs)] main_window: gtk::Window, #[allow(missing_docs)] _gtk_box_14: gtk::Box, #[allow(missing_docs)] inc_button: gtk::Button, #[allow(missing_docs)] _gtk_button_0: gtk::Button, #[allow(missing_docs)] _gtk_grid_2: gtk::Grid, #[allow(missing_docs)] _gtk_label_1: gtk::Label, #[allow(missing_docs)] _conditional_widget_3: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_4: gtk::Label, #[allow(missing_docs)] _gtk_label_5: gtk::Label, #[allow(missing_docs)] _gtk_label_6: gtk::Label, #[allow(missing_docs)] match_stack: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_7: gtk::Label, #[allow(missing_docs)] _gtk_label_8: gtk::Label, #[allow(missing_docs)] _gtk_label_9: gtk::Label, #[allow(missing_docs)] _gtk_label_builder_10: gtk::Label, #[allow(missing_docs)] _gtk_label_new_11: gtk::Label, /// Counter label _gtk_label_12: gtk::Label, #[allow(missing_docs)] _gtk_togglebutton_13: gtk::ToggleButton, #[allow(missing_docs)] toggle_handler: relm4::gtk::glib::signal::SignalHandlerId, #[allow(missing_docs)] local_label: gtk::Label, #[allow(missing_docs)] local_ref_label: gtk::Label, #[allow(missing_docs)] _gtk_window_15: gtk::Window, #[allow(missing_docs)] my_label_name: gtk::Label, test_field: u8,\n}","breadcrumbs":"Component macro reference » Macro expansion » The widgets struct","id":"159","title":"The widgets struct"},"16":{"body":"For our first app, let's create something original: a counter app . GTK Light GTK Dark App screenshot light App screenshot dark Adwaita Light Adwaita Dark App screenshot light adw App screenshot dark adw In this app, we will have a counter which can be incremented and decremented by pressing the corresponding buttons. The app we will write in this chapter is also available here . Run cargo run --example simple_manual from the example directory if you want to see the code in action.","breadcrumbs":"Your first app » Your first app","id":"16","title":"Your first app"},"160":{"body":"The next thing the macro does is generating the SimpleComponent trait implementation block. The start of the implementation block is very similar to the implementation block we use in the macro. Most notably, the Root type is automatically inserted, as is the implementation of init_root. All attributes and comments you add to the widget macro before the impl block should be kept as well. impl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); type Widgets = AppWidgets; fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } } type Root = gtk::Window; fn init_root() -> Self::Root { let main_window = gtk::Window::default(); main_window } Initialization before the view_output entrypoint A large part of the code generated by the macro is dedicated to the initialization of the view. This code is \"expanded\" from the view_output!() entrypoint. First, let's find the code we wrote before the entry point: fn init( init: Self::Init, renamed_root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; let icon_name = rand::random::().then(|| \"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; Next, the macro initializes all widgets. Widgets defined by their type are initialized with their Default implementation. Any constructors or functions that are invoked manually are left unchanged in the output. let main_window = renamed_root.clone(); let _gtk_box_14 = gtk::Box::default(); let inc_button = gtk::Button::default(); let _gtk_button_0 = gtk::Button::default(); let _gtk_grid_2 = gtk::Grid::default(); let _gtk_label_1 = gtk::Label::default(); let _conditional_widget_3 = relm4::gtk::Stack::default(); _conditional_widget_3 .set_transition_type(relm4::gtk::StackTransitionType::SlideLeft); let _gtk_label_4 = gtk::Label::default(); let _gtk_label_5 = gtk::Label::default(); let _gtk_label_6 = gtk::Label::default(); let match_stack = relm4::gtk::Stack::default(); match_stack.set_transition_type(relm4::gtk::StackTransitionType::SlideRight); let _gtk_label_7 = gtk::Label::default(); let _gtk_label_8 = gtk::Label::default(); let _gtk_label_9 = gtk::Label::default(); let _gtk_label_builder_10 = gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(); let _gtk_label_new_11 = gtk::Label::new(Some(\"Constructors work!\")); let _gtk_label_12 = gtk::Label::default(); let _gtk_togglebutton_13 = gtk::ToggleButton::default(); let _gtk_window_15 = gtk::Window::default(); let my_label_name = gtk::Label::default(); Assigning properties Assigning properties looks pretty normal as well. In the middle we have an optional assignment that uses an if let statement to only assign properties that match Some(data). In the macro we marked this line with a ?. main_window.set_title(Some(\"Macro reference example\")); main_window.set_default_width(300); main_window.set_default_height(100); relm4::RelmContainerExt::container_add(&main_window, &_gtk_box_14); _gtk_box_14.set_orientation(gtk::Orientation::Vertical); _gtk_box_14.set_spacing(5); _gtk_box_14.set_margin_all(5); _gtk_box_14.append(&inc_button); inc_button.set_label(\"Increment\"); if let Some(__p_assign) = icon_name { inc_button.set_icon_name(__p_assign); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_button_0); _gtk_button_0.set_label(\"Decrement\"); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_grid_2); _gtk_grid_2.attach(&_gtk_label_1, 1, 1, 1, 1); _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_box_14.append(&_conditional_widget_3); _conditional_widget_3.add_named(&_gtk_label_4, Some(\"0\")); _gtk_label_4.set_label(\"Value is even\"); _conditional_widget_3.add_named(&_gtk_label_5, Some(\"1\")); _gtk_label_5.set_label(\"Value is dividable by 3\"); _conditional_widget_3.add_named(&_gtk_label_6, Some(\"2\")); _gtk_label_6.set_label(\"Value is odd\"); _gtk_box_14.append(&match_stack); match_stack.add_named(&_gtk_label_7, Some(\"0\")); _gtk_label_7.set_label(\"Value is smaller than 3\"); match_stack.add_named(&_gtk_label_8, Some(\"1\")); _gtk_label_8.set_label(\"Value is higher than 2\"); _gtk_box_14.append(&_gtk_label_9); Events Now the macro generates the code for connecting events. { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); inc_button .connect_clicked(move |_| { sender.input(AppMsg::Increment); }); } { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_button_0 .connect_clicked(move |_| { sender.input(AppMsg::Decrement); }); } let toggle_handler = { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_togglebutton_13 .connect_toggled(move |_| { sender.input(AppMsg::Increment); }) }; The code looks very similar to what we wrote in the macro. append: inc_button = >k::Button { set_label: \"Increment\", // Only set this if `icon_name` is Some set_icon_name?: icon_name, connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); } }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); } }, Most notably, the sender we put in the square brackets is cloned as we requested. Initialization after the view_output entrypoint At the end we find the construction of the widgets struct and the construction of the ComponentParts, which was after the view_output! entrypoint. let widgets = Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label: local_ref_label.clone(), _gtk_window_15, my_label_name, test_field, }; ComponentParts { model: counter, widgets, } UI updates The last step of the macro is to generate the update logic within the update_view function. Any code present in the pre_view and post_view \"functions\" will be expanded before or after the generated code. Note that the generated code returns a private struct to prevent early returns in pre_view from skipping the rest of the view update code. /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, sender: ComponentSender) { struct __DoNotReturnManually; let _no_manual_return: __DoNotReturnManually = (move || { #[allow(unused_variables)] let Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label, _gtk_window_15, my_label_name, test_field, } = widgets; #[allow(unused_variables)] let counter = self; if (counter.value % 10 == 0) { _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); } let __current_page = _conditional_widget_3 .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = match_stack .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); match_stack .set_visible_child_name( match counter.value { (0..=2) => { let __page_active: bool = (__current_page == \"0\"); \"0\" } _ => { let __page_active: bool = (__current_page == \"1\"); \"1\" } }, ); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_window_15.set_visible(counter.value == 42); (move || {})(); __DoNotReturnManually })(); } Generated UI updates Within the generated update logic, the macro generates its own code to support more efficient updates. Updates from the #[watch] attribute are unconditional. _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); Updates from expressions annotated with #[track] are conditional based on whether the value changed, or based on if an expression is a certain value. if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, );","breadcrumbs":"Component macro reference » Macro expansion » The SimpleComponent trait implementation","id":"160","title":"The SimpleComponent trait implementation"},"161":{"body":"Congrats for making it this far 🎉! You're now a real expert of Relm4! As you have seen, the macro is nothing magical. It simply works with the information you give it.","breadcrumbs":"Component macro reference » Macro expansion » Conclusion","id":"161","title":"Conclusion"},"162":{"body":"If you want to look at the whole macro expansion at once, here it is. #![feature(prelude_import)]\n//! This example is a modified version of the `macro_reference` example in the [main Relm4\n//! repository][Relm4 repo].\n//!\n//! [Relm4 repo]: https://github.com/Relm4/Relm4/blob/main/examples/macro_reference.rs\n#[prelude_import]\nuse std::prelude::rust_2021::*;\n#[macro_use]\nextern crate std;\nuse gtk::prelude::{ BoxExt, ButtonExt, GridExt, GtkWindowExt, OrientableExt, ToggleButtonExt, WidgetExt,\n};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, SimpleComponent, WidgetPlus};\nstruct AppModel { value: u8, tracker: u8,\n}\nimpl AppModel { #[allow(dead_code, non_snake_case)] /// Get an immutable reference to this field. fn get_value(&self) -> &u8 { &self.value } #[allow(dead_code, non_snake_case)] /// Get a mutable reference to this field. Marks the field as changed. fn get_mut_value(&mut self) -> &mut u8 { self.tracker |= Self::value(); &mut self.value } #[allow(dead_code, non_snake_case)] /// Use a closure to update this field. Marks the field as changed. fn update_value(&mut self, f: F) { self.tracker |= Self::value(); f(&mut self.value); } #[allow(dead_code, non_snake_case)] /// Get bit mask to look for changes on this field. fn value() -> u8 { 1 << 0usize } #[allow(dead_code, non_snake_case)] /// Setter method. Will mark field as changed. fn set_value(&mut self, value: u8) { if self.value != value { self.tracker |= Self::value(); } self.value = value; } #[allow(dead_code)] /// Use this to check whether any changes made to this struct. fn track_all() -> u8 { u8::MAX } #[allow(dead_code)] /// Use this to mark all fields of the struct as changed. fn mark_all_changed(&mut self) { self.tracker = u8::MAX; } /// Check for changes made to this struct. fn changed(&self, mask: u8) -> bool { self.tracker & mask != 0 } /// Resets the tracker of this struct. fn reset(&mut self) { self.tracker = 0; }\n}\nenum AppMsg { Increment, Decrement,\n}\n#[automatically_derived]\nimpl ::core::fmt::Debug for AppMsg { fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { match self { AppMsg::Increment => ::core::fmt::Formatter::write_str(f, \"Increment\"), AppMsg::Decrement => ::core::fmt::Formatter::write_str(f, \"Decrement\"), } }\n}\nstruct AppInit { counter: u8,\n}\n#[allow(dead_code)]\nstruct AppWidgets { #[allow(missing_docs)] main_window: gtk::Window, #[allow(missing_docs)] _gtk_box_14: gtk::Box, #[allow(missing_docs)] inc_button: gtk::Button, #[allow(missing_docs)] _gtk_button_0: gtk::Button, #[allow(missing_docs)] _gtk_grid_2: gtk::Grid, #[allow(missing_docs)] _gtk_label_1: gtk::Label, #[allow(missing_docs)] _conditional_widget_3: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_4: gtk::Label, #[allow(missing_docs)] _gtk_label_5: gtk::Label, #[allow(missing_docs)] _gtk_label_6: gtk::Label, #[allow(missing_docs)] match_stack: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_7: gtk::Label, #[allow(missing_docs)] _gtk_label_8: gtk::Label, #[allow(missing_docs)] _gtk_label_9: gtk::Label, #[allow(missing_docs)] _gtk_label_builder_10: gtk::Label, #[allow(missing_docs)] _gtk_label_new_11: gtk::Label, /// Counter label _gtk_label_12: gtk::Label, #[allow(missing_docs)] _gtk_togglebutton_13: gtk::ToggleButton, #[allow(missing_docs)] toggle_handler: relm4::gtk::glib::signal::SignalHandlerId, #[allow(missing_docs)] local_label: gtk::Label, #[allow(missing_docs)] local_ref_label: gtk::Label, #[allow(missing_docs)] _gtk_window_15: gtk::Window, #[allow(missing_docs)] my_label_name: gtk::Label, test_field: u8,\n}\n#[automatically_derived]\n#[allow(dead_code)]\nimpl ::core::fmt::Debug for AppWidgets { fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { let names: &'static _ = &[ \"main_window\", \"_gtk_box_14\", \"inc_button\", \"_gtk_button_0\", \"_gtk_grid_2\", \"_gtk_label_1\", \"_conditional_widget_3\", \"_gtk_label_4\", \"_gtk_label_5\", \"_gtk_label_6\", \"match_stack\", \"_gtk_label_7\", \"_gtk_label_8\", \"_gtk_label_9\", \"_gtk_label_builder_10\", \"_gtk_label_new_11\", \"_gtk_label_12\", \"_gtk_togglebutton_13\", \"toggle_handler\", \"local_label\", \"local_ref_label\", \"_gtk_window_15\", \"my_label_name\", \"test_field\", ]; let values: &[&dyn ::core::fmt::Debug] = &[ &&self.main_window, &&self._gtk_box_14, &&self.inc_button, &&self._gtk_button_0, &&self._gtk_grid_2, &&self._gtk_label_1, &&self._conditional_widget_3, &&self._gtk_label_4, &&self._gtk_label_5, &&self._gtk_label_6, &&self.match_stack, &&self._gtk_label_7, &&self._gtk_label_8, &&self._gtk_label_9, &&self._gtk_label_builder_10, &&self._gtk_label_new_11, &&self._gtk_label_12, &&self._gtk_togglebutton_13, &&self.toggle_handler, &&self.local_label, &&self.local_ref_label, &&self._gtk_window_15, &&self.my_label_name, &&self.test_field, ]; ::core::fmt::Formatter::debug_struct_fields_finish( f, \"AppWidgets\", names, values, ) }\n}\nimpl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); type Widgets = AppWidgets; fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } } type Root = gtk::Window; fn init_root() -> Self::Root { let main_window = gtk::Window::default(); main_window } /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, sender: ComponentSender) { struct __DoNotReturnManually; let _no_manual_return: __DoNotReturnManually = (move || { #[allow(unused_variables)] let Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label, _gtk_window_15, my_label_name, test_field, } = widgets; #[allow(unused_variables)] let counter = self; if (counter.value % 10 == 0) { _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); } let __current_page = _conditional_widget_3 .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = match_stack .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); match_stack .set_visible_child_name( match counter.value { (0..=2) => { let __page_active: bool = (__current_page == \"0\"); \"0\" } _ => { let __page_active: bool = (__current_page == \"1\"); \"1\" } }, ); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_window_15.set_visible(counter.value == 42); (move || {})(); __DoNotReturnManually })(); } fn init( init: Self::Init, renamed_root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; let icon_name = rand::random::().then(|| \"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; let main_window = renamed_root.clone(); let _gtk_box_14 = gtk::Box::default(); let inc_button = gtk::Button::default(); let _gtk_button_0 = gtk::Button::default(); let _gtk_grid_2 = gtk::Grid::default(); let _gtk_label_1 = gtk::Label::default(); let _conditional_widget_3 = relm4::gtk::Stack::default(); _conditional_widget_3 .set_transition_type(relm4::gtk::StackTransitionType::SlideLeft); let _gtk_label_4 = gtk::Label::default(); let _gtk_label_5 = gtk::Label::default(); let _gtk_label_6 = gtk::Label::default(); let match_stack = relm4::gtk::Stack::default(); match_stack.set_transition_type(relm4::gtk::StackTransitionType::SlideRight); let _gtk_label_7 = gtk::Label::default(); let _gtk_label_8 = gtk::Label::default(); let _gtk_label_9 = gtk::Label::default(); let _gtk_label_builder_10 = gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(); let _gtk_label_new_11 = gtk::Label::new(Some(\"Constructors work!\")); let _gtk_label_12 = gtk::Label::default(); let _gtk_togglebutton_13 = gtk::ToggleButton::default(); let _gtk_window_15 = gtk::Window::default(); let my_label_name = gtk::Label::default(); { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); inc_button .connect_clicked(move |_| { sender.input(AppMsg::Increment); }); } { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_button_0 .connect_clicked(move |_| { sender.input(AppMsg::Decrement); }); } let toggle_handler = { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_togglebutton_13 .connect_toggled(move |_| { sender.input(AppMsg::Increment); }) }; {} main_window.set_title(Some(\"Macro reference example\")); main_window.set_default_width(300); main_window.set_default_height(100); relm4::RelmContainerExt::container_add(&main_window, &_gtk_box_14); _gtk_box_14.set_orientation(gtk::Orientation::Vertical); _gtk_box_14.set_spacing(5); _gtk_box_14.set_margin_all(5); _gtk_box_14.append(&inc_button); inc_button.set_label(\"Increment\"); if let Some(__p_assign) = icon_name { inc_button.set_icon_name(__p_assign); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_button_0); _gtk_button_0.set_label(\"Decrement\"); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_grid_2); _gtk_grid_2.attach(&_gtk_label_1, 1, 1, 1, 1); _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_box_14.append(&_conditional_widget_3); _conditional_widget_3.add_named(&_gtk_label_4, Some(\"0\")); _gtk_label_4.set_label(\"Value is even\"); _conditional_widget_3.add_named(&_gtk_label_5, Some(\"1\")); _gtk_label_5.set_label(\"Value is dividable by 3\"); _conditional_widget_3.add_named(&_gtk_label_6, Some(\"2\")); _gtk_label_6.set_label(\"Value is odd\"); _gtk_box_14.append(&match_stack); match_stack.add_named(&_gtk_label_7, Some(\"0\")); _gtk_label_7.set_label(\"Value is smaller than 3\"); match_stack.add_named(&_gtk_label_8, Some(\"1\")); _gtk_label_8.set_label(\"Value is higher than 2\"); _gtk_box_14.append(&_gtk_label_9); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_builder_10); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_new_11); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_12); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_label_12.set_margin_all(counter.value.into()); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_togglebutton_13); _gtk_togglebutton_13.set_label(\"Counter is even\"); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &local_label); local_label.set_opacity(0.7); relm4::RelmContainerExt::container_add(&_gtk_box_14, &local_ref_label); local_ref_label.set_opacity(0.7); local_ref_label.set_size_request(40, 40); let __current_page = \"\"; _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = \"\"; match_stack .set_visible_child_name( match counter.value { (0..=2) => \"0\", _ => \"1\", }, ); _gtk_window_15.set_title(Some(\"Another window\")); _gtk_window_15.set_default_width(300); _gtk_window_15.set_default_height(100); _gtk_window_15.set_transient_for(Some(&main_window)); _gtk_window_15.hide(); _gtk_window_15.set_visible(counter.value == 42); relm4::RelmContainerExt::container_add(&_gtk_window_15, &my_label_name); my_label_name.set_label(\"You made it to 42!\"); let widgets = Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label: local_ref_label.clone(), _gtk_window_15, my_label_name, test_field, }; ComponentParts { model: counter, widgets, } }\n}","breadcrumbs":"Component macro reference » Macro expansion » The whole macro expansion","id":"162","title":"The whole macro expansion"},"163":{"body":"The sections of this chapter will help you to migrate your code from an older to newer version of Relm4.","breadcrumbs":"Migration guides » Migration guides","id":"163","title":"Migration guides"},"164":{"body":"Fortunately, there aren't many big breaking changes in version 0.4 despite a lot of improvements under the hood. In case you're wondering what happened to version 0.3, Relm4 now tries to follow the version number of gtk4-rs and therefore skipped v0.3.","breadcrumbs":"Migration guides » 0.2 to 0.4 » Migration from v0.2 to v0.4","id":"164","title":"Migration from v0.2 to v0.4"},"165":{"body":"The methods of FactoryPrototype were renamed to better match the rest of Relm4's traits. generate => init_view update => view get_root => root_widget","breadcrumbs":"Migration guides » 0.2 to 0.4 » FactoryPrototype","id":"165","title":"FactoryPrototype"},"166":{"body":"manual_view was renamed to post_view and pre_view was added to run code before the macro generated code in the view function. component! was removed, components are now accessible without extra code. parent! was added to access the parent widgets which previously required no extra code.","breadcrumbs":"Migration guides » 0.2 to 0.4 » widget macro","id":"166","title":"widget macro"},"167":{"body":"The Components trait now has a new method called connect_parent. This method doesn't do much more than passing the parent widgets down to individual components and originated unintentionally in the rework of the initialization process. Because this method is usually just repetitive code, you can now use the derive macro instead: #[derive(relm4::Components)]\nstruct AppComponents { header: RelmComponent, dialog: RelmComponent,\n} The derive macro will always use RelmWorker::with_new_thread() for workers. Also, RelmComponent::with_new_thread() was removed due to the restructuring. It's recommended to use workers or message handlers for blocking operations instead. If there's anything missing, let me know. You can simply open an issue on GitHub or write a message in the Matrix room .","breadcrumbs":"Migration guides » 0.2 to 0.4 » Components","id":"167","title":"Components"},"168":{"body":"Version 0.5 brings many exciting changes but also a few major breaking changes. In this chapter, all changes should be covered to help you migrating your existing code quickly.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Migration from v0.4 to v0.5","id":"168","title":"Migration from v0.4 to v0.5"},"169":{"body":"Component unifies several traits that existed before. It entirely replaces AppUpdate, ComponentUpdate, AsyncComponentUpdate, MessageHandler, MicroModel, MicroWidgets, Components and Widgets. Components are now more similar to MicroComponent which means they are much more flexible and don't need a typed connection to their parent component. This makes using the same component with different parent components much easier. Instead of accessing the parent model, you define Init as a type that includes all information to initialize the component. The life cycle has changed a bit, too. Initialization of the root widget . The reason behind this is to allow parent components to access the root widget before the rest of the component is initialized. Initialize the component itself and the widgets . This happens in one method now, which makes it easier especially for more difficult initializations. Regarding updates, there hasn't been a lot of changes. However you can now optionally update view and model at once using update_with_view . The shutdown method is called when the component is destroyed. Components don't have to live for the entire application lifespan anymore.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Components","id":"169","title":"Components"},"17":{"body":"Often, programming concepts are easier to understand when explained with examples or metaphors from the real world. To understand how Relm4 apps work, you can think about a computer as a person. Our job as a programmer is to ensure that the users of our app will be able to communicate with the computer through the UI. Since the computer can't understand our human language, it needs some help from us to get the communication going. Let's have a look at what we need to get this done!","breadcrumbs":"Your first app » Application architecture","id":"17","title":"Application architecture"},"170":{"body":"Components have three kinds of messages now: Input is the regular Msg type from the Model trait in 0.4. Output is the message type, that can be used to forward information to other components automatically (or () if you don't care about forwarding). You will find more information about initializing components in the next section. CmdOutput is the output of commands. Commands are futures that are executed in the background. They fully replace async workers. The result of this future is the CmdOutput message handled in update_cmd , similar to the regular update function. The send! macro is obsolete. Please use sender.input(msg) instead.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Senders and messages","id":"170","title":"Senders and messages"},"171":{"body":"Components are initialized in the init method of their parent. You simply call MyComponentType::builder() to get a ComponentBuilder . Then you launch the component by calling builder.launch(init_params) to receive a Connector . From the connector you can decide to automatically forward messages to another component or just detach the connector to get a Controller . The controller is the type you now store in the model of the parent component instead of creating a separate components struct. There's no Components trait necessary. For types that implement Component that don't have any widgets (such as implementers of the Worker trait), you can call detach_worker from a ComponentBuilder. This spawns the internal runtime on a separate thread and gives you a WorkerController .","breadcrumbs":"Migration guides » 0.4 to 0.5 » Initializing components","id":"171","title":"Initializing components"},"172":{"body":"SimpleComponent SimpleComponent is a simpler variant of Component that helps with the implementation of Component. Particularly, it doesn't support commands. Worker Worker is an even simpler variant of SimpleComponent that helps with the implementation of Component. Particularly, it doesn't support widgets and allows running the components update loop on a different thread by using detach_worker . This is the replacement for the previously separated RelmWorker type.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Helper traits","id":"172","title":"Helper traits"},"173":{"body":"Factories now work very similar to components. In fact, the new FactoryComponent trait that replaces FactoryPrototype is almost identical to the Component trait. Messages can now be optionally passed by using the forward_to_parent method. FactoryVec was entirely removed in favor of FactoryVecDeque. Edits to factories are now similar to Mutex and require a guard. When the guard is dropped, all changes are rendered automatically, so no render method is required anymore.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Factories","id":"173","title":"Factories"},"174":{"body":"In general, a lot of internal macros were moved to be just attributes like watch! and track! now written as #[watch] and #[track(optional_condition)]. Multiple arguments now don't need args!() but just () whereas tuples need two parenthesis (()). Wrapping widgets into Some is now also an attribute #[wrap(Some)]. Additional arguments are now passed with square brackets [] instead of parenthesis (). Cloning variables for closures is always done with square brackets [] instead of parenthesis (). Old New view! { gtk::HeaderBar { set_title_widget = Some(>k::Box) { append: group = >k::ToggleButton { set_label: watch!(model.label), connect_toggled(sender) => move |btn| { // ... }, }, } }\n} view! { gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { append: group = >k::ToggleButton { #[watch] set_label: model.label, connect_toggled[sender] => move |btn| { // ... }, }, } }\n}","breadcrumbs":"Migration guides » 0.4 to 0.5 » The view macro","id":"174","title":"The view macro"},"175":{"body":"The macro in now called #[component]. You need to use let widgets = view_output!(); in the init function to inject the code from the view macro. pre_init -> Code before view_output!(). post_init -> Code after view_output!().","breadcrumbs":"Migration guides » 0.4 to 0.5 » The widget macro","id":"175","title":"The widget macro"},"176":{"body":"Now you need to specify an application id and a generic parameter is required when calling run().","breadcrumbs":"Migration guides » 0.4 to 0.5 » RelmApp","id":"176","title":"RelmApp"},"177":{"body":"WidgetPlus::inline_css now takes &str as parameter instead of &[u8].","breadcrumbs":"Migration guides » 0.4 to 0.5 » Miscellaneous","id":"177","title":"Miscellaneous"},"178":{"body":"v0.4 v0.5 Model Component AppUpdate Component ComponentUpdate Component AsyncComponentUpdate Component MicroComponent Component MicroWidgets Component MessageHandler Component FactoryPrototype FactoryComponent Model::Msg Component::Input Model::Widgets Component::Widgets Model::Components removed Components Store a Controller for each component in your model parent_sender Forward output messages from one component to another by using Connector In case there's something missing, please let me know. You can simply open an issue on GitHub or write a message in the Matrix room .","breadcrumbs":"Migration guides » 0.4 to 0.5 » Summary","id":"178","title":"Summary"},"179":{"body":"","breadcrumbs":"Migration guides » 0.5 to 0.6 » Migration from v0.5 to v0.6","id":"179","title":"Migration from v0.5 to v0.6"},"18":{"body":"For our app, we just want to tell the computer to either increment or decrement a counter. enum AppMsg { Increment, Decrement,\n}","breadcrumbs":"Your first app » Messages","id":"18","title":"Messages"},"180":{"body":"FactoryComponent::output_to_parent_input() => FactoryComponent::forward_to_parent()","breadcrumbs":"Migration guides » 0.5 to 0.6 » Renamed methods","id":"180","title":"Renamed methods"},"181":{"body":"RelmActionGroup::add_action() now consumes the action Use RelmActionGroup::register_for_widget() and RelmActionGroup::register_for_main_application() instead of WidgetExt::insert_action_group()","breadcrumbs":"Migration guides » 0.5 to 0.6 » Actions","id":"181","title":"Actions"},"182":{"body":"","breadcrumbs":"Migration guides » 0.6 to 0.7 » Migration from v0.6 to v0.7","id":"182","title":"Migration from v0.6 to v0.7"},"183":{"body":"Switching between the Component and AsyncComponent traits has been a bit unpleasant in previous versions due to complex errors generated by the code generated by async-trait. To avoid this, the signatures of Component and AsyncComponent were unified. This means, that Component::init() and SimpleComponent::init() now take Self::Root as owned parameter instead of a reference (&Self::Root). In most places, this just means that you have to remove a &.","breadcrumbs":"Migration guides » 0.6 to 0.7 » Component changes","id":"183","title":"Component changes"},"184":{"body":"ParentInput and forward_to_parent() were removed from FactoryComponent and AsyncFactoryComponent. Instead, factories now support basically the same builder pattern as components.","breadcrumbs":"Migration guides » 0.6 to 0.7 » Factory changes","id":"184","title":"Factory changes"},"185":{"body":"Replace this: #[relm4::factory]\nimpl FactoryComponent for Counter { type ParentInput = AppMsg; fn forward_to_parent(output: Self::Output) -> Option { Some(match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }) } // ...\n} #[relm4::component]\nimpl SimpleComponent for App { // ... fn init( counter: Self::Init, root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::new(gtk::Box::default(), sender.input_sender()); // ... }\n} With this: #[relm4::component]\nimpl SimpleComponent for App { // ... fn init( counter: Self::Init, root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); // ... }\n}","breadcrumbs":"Migration guides » 0.6 to 0.7 » Example","id":"185","title":"Example"},"186":{"body":"set_global_css and set_global_css_from_file are now methods of RelmApp to prevent calling them before initializing GTK The drawing module was moved into the new abstractions module","breadcrumbs":"Migration guides » 0.6 to 0.7 » Other changes","id":"186","title":"Other changes"},"187":{"body":"Since 0.8 was released at the same day as 0.7, there are not many changes. It is worth noting though, that the async-trait crate was removed in favor of regular async traits available since Rust 1.75. This means that all manual uses of #[async_trait] for AsyncComponent or similar traits have to be removed.","breadcrumbs":"Migration guides » 0.7 to 0.8 » Migration from v0.7 to v0.8","id":"187","title":"Migration from v0.7 to v0.8"},"19":{"body":"For our counter app, the computer only needs to remember the counter value, so an u8 is all we need. struct AppModel { counter: u8,\n}","breadcrumbs":"Your first app » The model","id":"19","title":"The model"},"2":{"body":"If you find a mistake or something unclear in Relm4 or this book, let us know! Simply open up an issue or start a discussion over at GitHub or chat with us on Matrix .","breadcrumbs":"Introduction » Issues and feedback","id":"2","title":"Issues and feedback"},"20":{"body":"GTK4 offers the computer widgets that allow it to take input and to respond. Widgets are simply parts of an UI like buttons, input fields or text areas. To be able to update the widgets in our program, we can put them all into a struct. For our application, we use a window with two buttons to increase and decrease the counter and a label to display the counter value. We also need a box as a container to house our buttons and label, since a window can only have one child. In our case, we will only update the label when we increment or decrement the counter, so we don't really need to store everything inside the struct. struct AppWidgets { label: gtk::Label,\n} Although, if you want to, you can.","breadcrumbs":"Your first app » The widgets","id":"20","title":"The widgets"},"21":{"body":"The last step we need is to tell the computer how to initialize and update the widgets. All that is left to do is to implement the SimpleComponent trait for your model, which tells the computer exactly how to visualize its memory. Let's do this step by step. First, we'll have a look at the beginning of the trait impl. impl SimpleComponent for AppModel { The first thing you need to do is to define some generic types necessary to make our component work. /// The type of the messages that this component can receive. type Input = AppMsg; /// The type of the messages that this component can send. type Output = (); /// The type of data with which this component will be initialized. type Init = u8; /// The root GTK widget that this component will create. type Root = gtk::Window; /// A data structure that contains the widgets that you will need to update. type Widgets = AppWidgets; The types defined in the trait tell our component how it should communicate with other components and what type of widgets should be produced. The Root type is the outermost widget of the app. Components can choose this type freely, but the main component must use a Window. Since the window widget is our root widget, we are going to create it in the init_root function. fn init_root() -> Self::Root { gtk::Window::builder() .title(\"Simple app\") .default_width(300) .default_height(100) .build() } Next up, we want to initialize our UI and the model. Don't worry about the amount of manual code you need for handling widgets. In the next chapter, we'll see how this can be done easier. All of these widgets will be created in the init function. We get our Root window and the Init variables to create our widgets with. /// Initialize the UI and model. fn init( counter: Self::Init, window: Self::Root, sender: ComponentSender, ) -> relm4::ComponentParts { let model = AppModel { counter }; let vbox = gtk::Box::builder() .orientation(gtk::Orientation::Vertical) .spacing(5) .build(); let inc_button = gtk::Button::with_label(\"Increment\"); let dec_button = gtk::Button::with_label(\"Decrement\"); let label = gtk::Label::new(Some(&format!(\"Counter: {}\", model.counter))); label.set_margin_all(5); window.set_child(Some(&vbox)); vbox.set_margin_all(5); vbox.append(&inc_button); vbox.append(&dec_button); vbox.append(&label); inc_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Increment); } )); dec_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Decrement); } )); let widgets = AppWidgets { label }; ComponentParts { model, widgets } } First, we initialize each of our widgets, mostly by using builder patterns. Then we connect the widgets so that GTK4 knows how they are related to each other. The buttons and the label are added as children of the box, and the box is added as the child of the window. Next, we connect the \"clicked\" event for both buttons and send a message from the closures to the computer. To do this, we only need to move a cloned sender into the closures and send the message. Now every time we click our buttons, a message will be sent to update our counter! Of course, the computer needs to do more than just remembering things, it also needs to process information. Here, both the model and message types come into play. The update function of the SimpleComponent trait tells the computer how to process messages and how to update its memory. fn update(&mut self, message: Self::Input, _sender: ComponentSender) { match message { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } } wrapping_add(1) and wrapping_sub(1) are like +1 and -1, but don't panic on overflows. We see that the update function receives a message and updates the model according to your instructions. Still our UI will not update when the counter is changed. To do this, we need to implement the update_view function that modifies the UI according to the changes in the model. /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, _sender: ComponentSender) { widgets .label .set_label(&format!(\"Counter: {}\", self.counter)); }","breadcrumbs":"Your first app » Implement a component with SimpleComponent.","id":"21","title":"Implement a component with SimpleComponent."},"22":{"body":"The last step is to run the app we just wrote. To do so, we just need to initialize our model and pass it into RelmApp::new(). fn main() { let app = RelmApp::new(\"relm4.test.simple_manual\"); app.run::(0);\n} 🎉 Congratulations! You just wrote your first app with Relm4! 🎉","breadcrumbs":"Your first app » Running the App","id":"22","title":"Running the App"},"23":{"body":"Let's summarize what we learned in this chapter. A Relm4 application has three important types: The model type that stores the application state, the memory of our app. The message type that describes which information can be sent to update the model. The widgets type that stores our widgets. Also, there are two important functions: update receives a message and updates the model accordingly. update_view receives the updated model and updates the widgets accordingly. The app does all those things in a loop. It waits for messages and once a message is received, it runs update and then view. relm update loop Relm4 separates the data and the UI. The UI never knows which message was sent, but can only read the model. This might seem like a limitation, but it helps you to create maintainable, stable and consistent applications.","breadcrumbs":"Your first app » Summary","id":"23","title":"Summary"},"24":{"body":"I hope this chapter made everything clear for you :) If you found a mistake or there was something unclear, please open an issue here . As you have seen, initializing the UI was by far the largest part of our app, with roughly one half of the total code. In the next chapter, we will have a look at the relm4-macros crate, which provides a macro that helps us reduce the amount of code we need to implement the Widgets trait. As you might have noticed, storing inc_button, dec_button and vbox in our widgets struct is not necessary because GTK will keep them alive automatically. Therefore, we can remove them from AppWidgets to avoid compiler warnings.","breadcrumbs":"Your first app » Conclusion","id":"24","title":"Conclusion"},"25":{"body":"Let's review our code in one piece to see how all these parts work together: use gtk::glib::clone;\nuse gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; struct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} struct AppWidgets { label: gtk::Label,\n} impl SimpleComponent for AppModel { /// The type of the messages that this component can receive. type Input = AppMsg; /// The type of the messages that this component can send. type Output = (); /// The type of data with which this component will be initialized. type Init = u8; /// The root GTK widget that this component will create. type Root = gtk::Window; /// A data structure that contains the widgets that you will need to update. type Widgets = AppWidgets; fn init_root() -> Self::Root { gtk::Window::builder() .title(\"Simple app\") .default_width(300) .default_height(100) .build() } /// Initialize the UI and model. fn init( counter: Self::Init, window: Self::Root, sender: ComponentSender, ) -> relm4::ComponentParts { let model = AppModel { counter }; let vbox = gtk::Box::builder() .orientation(gtk::Orientation::Vertical) .spacing(5) .build(); let inc_button = gtk::Button::with_label(\"Increment\"); let dec_button = gtk::Button::with_label(\"Decrement\"); let label = gtk::Label::new(Some(&format!(\"Counter: {}\", model.counter))); label.set_margin_all(5); window.set_child(Some(&vbox)); vbox.set_margin_all(5); vbox.append(&inc_button); vbox.append(&dec_button); vbox.append(&label); inc_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Increment); } )); dec_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Decrement); } )); let widgets = AppWidgets { label }; ComponentParts { model, widgets } } fn update(&mut self, message: Self::Input, _sender: ComponentSender) { match message { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } } /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, _sender: ComponentSender) { widgets .label .set_label(&format!(\"Counter: {}\", self.counter)); }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple_manual\"); app.run::(0);\n}","breadcrumbs":"Your first app » The complete code","id":"25","title":"The complete code"},"26":{"body":"To simplify the implementation of the Component trait, let's use the relm4-macros crate! App screenshot dark The app will look and behave identically to our first app from the previous chapter. Only the implementation is different. The app we will write in this chapter is also available here . Run cargo run --example simple from the example directory if you want to see the code in action.","breadcrumbs":"The component macro » The component macro","id":"26","title":"The component macro"},"27":{"body":"The component macro will simplify creating the Widgets struct. The update code remains untouched, so we can reuse most of the code from the previous chapter. Let's have a look at how to define a component with the macro and go through the code step by step: #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => AppMsg::Increment }, gtk::Button::with_label(\"Decrement\") { connect_clicked => AppMsg::Decrement }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { counter }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} The associated types don't change. We still have to define the model, the input parameters, and the message types. However, the Widgets type is never explicitly defined in the code, but generated by the macro. And then... wait, where do we define the Root type? Actually, the macro knows that the outermost widget becomes automatically the root widget. Next up - the heart of the component macro - the nested view! macro. Here, we can easily define widgets and assign properties to them.","breadcrumbs":"The component macro » What's different","id":"27","title":"What's different"},"28":{"body":"As you see, we start with the gtk::Window which is our root. Then we open up brackets and assign properties to the window. There's not much magic here but actually set_title is a method provided by gtk4-rs. So technically, the macro creates code like this: window.set_title(Some(\"Simple app\"));","breadcrumbs":"The component macro » Properties","id":"28","title":"Properties"},"29":{"body":"We assign a child to the window by nesting another widget inside it. Widgets may be nested indefinitely: gtk::Box { Sometimes we want to use a constructor function to initialize our widgets. For the second button we used the gtk::Button::with_label function. This function returns a new button with the \"Decrement\" label already set, so we don't have to call set_label afterwards. gtk::Button::with_label(\"Decrement\") {","breadcrumbs":"The component macro » Widgets","id":"29","title":"Widgets"},"3":{"body":"All platforms supported by GTK4 are available for Relm4 as well: Linux Windows macOS","breadcrumbs":"Introduction » Platform support","id":"3","title":"Platform support"},"30":{"body":"To connect events, we use this general syntax: method_name[cloned_var1, cloned_var2, ...] => move |args, ...| { code... } Again, there's no magic. The macro will simply assign a closure to a method. Because closures often need to capture local variables that don't implement the Copy trait, we need to clone these variables. Therefore, we can list the variables we want to clone in the square brackets after the method name. For simple cases there's even a shorter syntax for just sending one input message that works with most event handlers. So instead of this: method_name[sender] => move |_| { sender.input(Msg); }, You can simply write this: method_name => Msg, This is what we used in this example: connect_clicked => AppMsg::Decrement","breadcrumbs":"The component macro » Events","id":"30","title":"Events"},"31":{"body":"The last special syntax of the component macro we'll cover here is the #[watch] attribute. It's just like the normal initialization except that it also updates the property in the view function. Without it, the counter label would never be updated. #[watch] set_label: &format!(\"Counter: {}\", model.counter), The full reference for the syntax of the widget macro can be found here .","breadcrumbs":"The component macro » UI updates","id":"31","title":"UI updates"},"32":{"body":"After we've defined our widgets, we need to construct them. This is done with the view_output! macro, which returns a fully-initialized instance of our Widgets struct. // Insert the macro code generation here let widgets = view_output!();","breadcrumbs":"The component macro » Constructing the Widgets","id":"32","title":"Constructing the Widgets"},"33":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; struct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => AppMsg::Increment }, gtk::Button::with_label(\"Decrement\") { connect_clicked => AppMsg::Decrement }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { counter }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.run::(0);\n}","breadcrumbs":"The component macro » The complete code","id":"33","title":"The complete code"},"34":{"body":"This chapter comes quite early in the book because it is quite helpful for beginners, but is certainly also useful for more advanced users. It contains the most common tips and tricks you will need while using Relm4. In case you have a problem, you can simply return to this chapter and might find something helpful very quickly. We recommend to have at least a short look at this chapter, but there's no crucial information in here so you can already continue with the next chapter if you want.","breadcrumbs":"Tips and tricks » Tips and tricks","id":"34","title":"Tips and tricks"},"35":{"body":"Some features of the view macro are explained very late in the book and are easy to overlook. Here's a short summery of those features, which you might find useful. If you found something interesting, you can look for more details in the macro reference chapter . Initialization using a builder pattern Pass additional arguments Pass Some(widget) if and match statements to dynamically select visible widgets Use the return value of assignments Optional and iterative assignments","breadcrumbs":"Tips and tricks » Advanced view macro features","id":"35","title":"Advanced view macro features"},"36":{"body":"The Elm architecture itself is pretty simple, but as your application grows, small oversights can sometimes cause large problems.","breadcrumbs":"Tips and tricks » Common pitfalls","id":"36","title":"Common pitfalls"},"37":{"body":"Relm4 components use a simple update loop: Receive a message, update the model and then update the view. Usually, this works as intended, but if updating the view somehow creates a new, identical message, your code will be stuck in an infinite loop and your app will freeze. To prevent this, the view macro has the block_signal attribute which is explained here .","breadcrumbs":"Tips and tricks » Message recursion","id":"37","title":"Message recursion"},"38":{"body":"Sending messages in Relm4 can lead to panics under certain circumstances. The most common mistake is dropping a Controller. This will cause the entire runtime of the component to be dropped together with all it's receivers. Sending message to this component afterwards will not work because the receiving side is not available anymore. To avoid this problem, you can either store the Controller in the model of its parent components or call detach_runtime() . Also note that sending output messages will not work if you detach a component, again because this means that no receiver is available. In this case it might be desired to ignore sending errors.","breadcrumbs":"Tips and tricks » Sending errors","id":"38","title":"Sending errors"},"39":{"body":"Relm4's macros try to make your life easier, but sometimes the created error messages are rather confusing. This is not something that can be fully fixed in the macro itself due to the limitations of the Rust programming language, but we try to summarize some common errors in this section.","breadcrumbs":"Tips and tricks » Common compiler errors","id":"39","title":"Common compiler errors"},"4":{"body":"If you prefer learning directly from examples, we got you covered! Many code examples in this book and many other examples can also be found in the git-repository . Whenever an example is discussed in the book, the introduction will mention the name of the example and provide a link to it. To setup the examples run git clone https://github.com/Relm4/Relm4.git And to run an example, simply type cargo run --example NAME To get a list of all examples, run cargo run --example","breadcrumbs":"Introduction » Examples","id":"4","title":"Examples"},"40":{"body":"The #[component] and #[factory] macros will automatically generate a struct for storing your widgets. This struct must have the same visibility as the model because it is associated with the Component or FactoryComponent implementation of the model. To tell the macro to generate a public widgets type, you can simply use #[component(pub)] or #[factory(pub)].","breadcrumbs":"Tips and tricks » Private type in public interface","id":"40","title":"Private type in public interface"},"41":{"body":"Relm4 implements the ContainerExt trait for many widgets that allows you simply nest widgets in the view macro. gtk::Box { gtk::Label { // ... }\n} Unfortunately, this trait can't always be implemented because some widgets don't have a obvious method for adding children. For gtk::Box it is relatively simple and just uses the append() method internally. However, gtk::Header has three possible locations to add children: start, center and end. Implementing RelmContainerExt for such a type is not possible because it's not clear what the default behavior should be. Other types such as gtk::Grid even need more information to place children. In this case, you can simply pass the method name before declaring the child widget. Also, we often need a reference (&) because most methods in gtk-rs take references. gtk::HeaderBar { pack_start = >k::Label { // ... }\n},\ngtk::Grid { attach[0, 0, 1, 1] = >k::Label { // ... }\n}","breadcrumbs":"Tips and tricks » Method container_add is missing","id":"41","title":"Method container_add is missing"},"42":{"body":"The structure and design of most gtk-rs crates is often a bit different from most other Rust crates. Because GTK is based on GObject, a C library that implements object-oriented programming, the gtk-rs developers had to come up with some clever ideas to integrate the C code into Rust.","breadcrumbs":"Tips and tricks » Working with gtk-rs","id":"42","title":"Working with gtk-rs"},"43":{"body":"Looking at the documentation of gtk::Box makes it look like this type has just a new() and a builder() method. However, this is not quite true as the gtk::Box type comes with plenty of methods. To find those methods, you have to look at \"implements\" section , which contains a list of traits implemented by this type. In particular, BoxExt gives you a lot of useful methods. Another very important trait in the list is WidgetExt which is implemented by all widgets. In the same fashion, you can find the available methods of other widgets.","breadcrumbs":"Tips and tricks » Reading docs","id":"43","title":"Reading docs"},"44":{"body":"GTK has a built-in inspector that has similar features as browser developer tools. You can use them to look at individual widgets, modify their properties, apply custom CSS and much more. In particular, it is very useful for finding the best values before integrating them into your code. To use the inspector, you only need to press Ctrl+Shift+D while you have a GTK application opened (this not just works for Relm4, but all GTK based apps). You should see an overview over all your widgets, which you can expand row by row. Yet, to select widgets, it is more convenient to use the button in the top left which allows you to select a widget by clicking on your app. Once you have selected a widget, you can modify its properties. You can also use the CSS tab to apply custom CSS to your application. Once you entered your rules, make sure the pause button is not selected. For example, you could try setting a border for every widget: * { border: 1px solid red;\n} Widget overview Widget properties Widget overview Widget properties","breadcrumbs":"Tips and tricks » Using the inspector","id":"44","title":"Using the inspector"},"45":{"body":"Both GTK4, libadwaita and ASHPD (a library for portals) have demo applications. Those are very useful when searching for widgets and other features, especially when combined with the inspector. Setup gnome-nightly flatpak remote: flatpak remote-add --if-not-exists gnome-nightly https://nightly.gnome.org/gnome-nightly.flatpakrepo Install the GTK4 demo: flatpak install gnome-nightly org.gtk.Demo4 Install the Adwaita demo: flatpak install gnome-nightly org.gnome.Adwaita1.Demo Install the ASHPD demo: flatpak install flathub com.belmoussaoui.ashpd.demo","breadcrumbs":"Tips and tricks » Demo applications","id":"45","title":"Demo applications"},"46":{"body":"Relm4 also offers a few extra crates and projects to make your life easier: relm4-template : A template for flatpak apps that saves a lot of time for setting up new projects relm4-icons : Over 2000 icons, ready to use for your app relm4-components : A collection of handy components","breadcrumbs":"Tips and tricks » Our ecosystem","id":"46","title":"Our ecosystem"},"47":{"body":"In case you didn't find the answer to your question in this book, feel free to ask it in our matrix chat or in a GitHub discussion (you can find all links in our README ). We are always happy to help you! After all, this chapter was assembled from the most common questions we got from either GitHub or the matrix chat.","breadcrumbs":"Tips and tricks » Guaranteed helpful: Our matrix chat","id":"47","title":"Guaranteed helpful: Our matrix chat"},"48":{"body":"Relm4 follows the Elm programming model which means that data and widgets are separated. At first glance this might cause a problem. Larger applications need to efficiently update their widgets because rebuilding the whole UI for every update is not an option. But since data and widgets are separated, how do we know which UI elements need to be updated? Let's have a look at the following example: Imagine you have an app with 1000 counters and you only increment the first counter. The model receives the increment message for the first counter and increments it. Now the view function gets the updated model with 1000 counters and… well, has no idea what has changed! So instead of one UI update we need to do 1000 because we don't know which of our counters was modified. There are two concepts in Relm4 to avoid unnecessary UI updates: Trackers identify modifications of fields in structs to only trigger updates to the affected UI elements. Factories track changes in data structures similar to std::collections in order to perform also minimal UI updates. They are used to generate multiple similar widgets, e.g. a row of buttons, from a data collection. Both concepts are explained in the following chapters.","breadcrumbs":"Efficient UI updates » Efficient UI updates","id":"48","title":"Efficient UI updates"},"49":{"body":"A tracker in this context simply means a data type that's able to track changes to itself. For example, if we increment the counter of the model we used for our first app, the model might tell us later that the counter changed during the last update function. Relm4 does not promote any implementation of a tracker. You're free to use any implementation you like, you can even implement a tracker yourself. In this example however, we'll use the tracker crate that provides a simple macro that implements a tracker for us automatically. Using this technique, we will implement a small program which displays two randomly picked icons controlled by two buttons: App screenshot When pressing a button, the icon above it will change. The background of the application will become green when the two icons are identical: App screenshot with with equal icons","breadcrumbs":"Efficient UI updates » Tracker » Tracker","id":"49","title":"Tracker"},"5":{"body":"As a sneak peak here are screenshots of some examples. Light Theme Dark Theme Pop Over light Pop Over dark Factory-Advanced light Factory-Advanced dark","breadcrumbs":"Introduction » Screenshots","id":"5","title":"Screenshots"},"50":{"body":"The tracker::track macro implements the following methods for your struct fields: get_{field_name}() Get an immutable reference to your field. get_mut_{field_name}() Get a mutable reference to your field. Assumes the field will be modified and marks it as changed. set_{field_name}(value) Get a mutable reference to your field. Marks the field as changed only if the new value isn't equal with the previous value. update_{field_name}(fn) Update your mutable field with a function or a closure. Assumes the field will be modified and marks it as changed. To check for changes you can call {struct_var_name}.changed(StructName::{field_name}()) and it will return a bool indication whether the field was updated. To reset all previous changes, you can call {struct_var_name}.reset().","breadcrumbs":"Efficient UI updates » Tracker » The tracker crate","id":"50","title":"The tracker crate"},"51":{"body":"First we have to add the tracker library to Cargo.toml: tracker = \"0.2.2\" Now let's have a look at a small example. #[tracker::track]\nstruct Test { x: u8, y: u64,\n} fn main() { let mut t = Test { x: 0, y: 0, // the macro generates a new variable called // \"tracker\" which stores the changes tracker: 0, }; t.set_x(42); // let's check whether the change was detected assert!(t.changed(Test::x())); // reset t so we don't track old changes t.reset(); t.set_x(42); // same value, so no change assert!(!t.changed(Test::x()));\n} So in short, the tracker::track macro provides various getters and setters that will mark struct fields as changed. You also get a method that checks for changes and a method to reset the changes.","breadcrumbs":"Efficient UI updates » Tracker » A tracker example","id":"51","title":"A tracker example"},"52":{"body":"Let's build a simple app that shows two random icons and allows the user to set either of them to a new random icon. As a bonus, we want to show a fancy background color if both icons are the same. The app we will write in this chapter is also available here . Run cargo run --example tracker from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » Tracker » Using trackers in Relm4 apps","id":"52","title":"Using trackers in Relm4 apps"},"53":{"body":"Before we can select random icons, we need to quickly implement a function that will return us random image names available in the default GTK icon theme. const ICON_LIST: &[&str] = &[ \"bookmark-new-symbolic\", \"edit-copy-symbolic\", \"edit-cut-symbolic\", \"edit-find-symbolic\", \"starred-symbolic\", \"system-run-symbolic\", \"emoji-objects-symbolic\", \"emoji-nature-symbolic\", \"display-brightness-symbolic\",\n]; fn random_icon_name() -> &'static str { ICON_LIST .iter() .choose(&mut rand::thread_rng()) .expect(\"Could not choose a random icon\")\n}","breadcrumbs":"Efficient UI updates » Tracker » The icons","id":"53","title":"The icons"},"54":{"body":"For our model we only need to store the two icon names and whether both of them are identical. #[tracker::track]\nstruct AppModel { first_icon: &'static str, second_icon: &'static str, identical: bool,\n} The message type is also pretty simple: we just want to update one of the icons. #[derive(Debug)]\nenum AppInput { UpdateFirst, UpdateSecond,\n} There are a few notable things for the Component's update implementation. First, we call self.reset() at the top of the function body. This ensures that the tracker will be reset so we don't track old changes. Also, we use setters instead of assignments because we want to track these changes. Yet, you could still use the assignment operator if you want to apply changes without notifying the tracker. fn update(&mut self, message: Self::Input, _sender: ComponentSender) { // reset tracker value of the model self.reset(); match message { AppInput::UpdateFirst => { self.set_first_icon(random_icon_name()); } AppInput::UpdateSecond => { self.set_second_icon(random_icon_name()); } } self.set_identical(self.first_icon == self.second_icon); }","breadcrumbs":"Efficient UI updates » Tracker » The model","id":"54","title":"The model"},"55":{"body":"Now we reached the interesting part of the code where we can actually make use of the tracker. Let's have a look at the complete view! macro call: view! { #[root] gtk::ApplicationWindow { #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, set_margin_all: 10, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateFirst) } } }, append = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::second_icon())\"] set_icon_name: Some(model.second_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateSecond) } } }, } } }","breadcrumbs":"Efficient UI updates » Tracker » The view","id":"55","title":"The view"},"56":{"body":"In this example, we need some additional code in fn main() to add custom CSS that sets the background color for elements with class name \"identical\". Later, we just need to assign the \"identical\" class name to a widget to make it match the CSS selector. fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.set_global_css(\".identical { background: #00ad5c; }\"); app.run::(());\n}","breadcrumbs":"Efficient UI updates » Tracker » The main function","id":"56","title":"The main function"},"57":{"body":"The #[track] attribute is applied to method invocations in our view code. It allows us to add a condition to the update: if the condition is true, the method will be called, otherwise, it will be skipped. The attribute syntax looks like this: #[track = \"\"] Let's have a look at its first appearance: #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), The set_class_active method is used to either activate or disable a CSS class. It takes two parameters, the first is the class itself and the second is a boolean which specifies if the class should be added (true) or removed (false). The value of the #[track] attribute is parsed as a boolean expression. This expression will be used as a condition to check whether something has changed. If this condition is true, the set_class_active method will be called with the parameters it guards. The macro expansion for method calls annotated with the #[track] attribute look roughly like this: if model.changed(AppModel::identical()) { self.main_window.set_class_active(\"identical\", model.identical);\n} That's all. It's pretty simple, actually. We just use a condition that allows us to update our widgets only when needed. The second #[track] attribute works similarly: #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), Using a tracker as debugging helper Since the #[track] attribute parses expressions, you can use the following syntax to debug your trackers: #[track = \"{ println!(\"Update widget\"); argument }\"]","breadcrumbs":"Efficient UI updates » Tracker » The #[track] attribute","id":"57","title":"The #[track] attribute"},"58":{"body":"There's one last thing to point out. When initializing our model, we need to initialize the tracker field as well. The initial value doesn't really matter because we call reset() in the update function anyway, but usually 0 is used. let model = AppModel { first_icon: random_icon_name(), second_icon: random_icon_name(), identical: false, tracker: 0, };","breadcrumbs":"Efficient UI updates » Tracker » Initializing the model","id":"58","title":"Initializing the model"},"59":{"body":"Let's look at our code again in one piece to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, OrientableExt};\nuse rand::prelude::IteratorRandom;\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; const ICON_LIST: &[&str] = &[ \"bookmark-new-symbolic\", \"edit-copy-symbolic\", \"edit-cut-symbolic\", \"edit-find-symbolic\", \"starred-symbolic\", \"system-run-symbolic\", \"emoji-objects-symbolic\", \"emoji-nature-symbolic\", \"display-brightness-symbolic\",\n]; fn random_icon_name() -> &'static str { ICON_LIST .iter() .choose(&mut rand::thread_rng()) .expect(\"Could not choose a random icon\")\n} // The track proc macro allows to easily track changes to different\n// fields of the model\n#[tracker::track]\nstruct AppModel { first_icon: &'static str, second_icon: &'static str, identical: bool,\n} #[derive(Debug)]\nenum AppInput { UpdateFirst, UpdateSecond,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = AppInput; type Output = (); view! { #[root] gtk::ApplicationWindow { #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, set_margin_all: 10, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateFirst) } } }, append = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::second_icon())\"] set_icon_name: Some(model.second_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateSecond) } } }, } } } // Initialize the UI. fn init( _params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { first_icon: random_icon_name(), second_icon: random_icon_name(), identical: false, tracker: 0, }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, message: Self::Input, _sender: ComponentSender) { // reset tracker value of the model self.reset(); match message { AppInput::UpdateFirst => { self.set_first_icon(random_icon_name()); } AppInput::UpdateSecond => { self.set_second_icon(random_icon_name()); } } self.set_identical(self.first_icon == self.second_icon); }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.set_global_css(\".identical { background: #00ad5c; }\"); app.run::(());\n}","breadcrumbs":"Efficient UI updates » Tracker » The complete code","id":"59","title":"The complete code"},"6":{"body":"We want to thank all contributors of relm especially antoyo for building relm that inspired much of the work on Relm4. Also, we want to thank all contributors of gtk-rs that put a lot of effort into the project for creating outstanding Rust bindings for GTK4. We want to thank tronta , Eduardo Flores , Andy Russell , Aaron Erhardt for contributing a lot of improvements to this book.","breadcrumbs":"Introduction » Special thanks","id":"6","title":"Special thanks"},"60":{"body":"Factories define how to generate widgets from data collections. GTK also has factories, yet Relm4 uses its own factory implementation which is much easier to use in regular Rust code. App screenshot dark This app will have a dynamic number of counters. Also, the counters can be moved up and down by the user.","breadcrumbs":"Efficient UI updates » Factories » Factory","id":"60","title":"Factory"},"61":{"body":"Factories allow you to visualize data in a natural way. If you wanted to store a set of counter values in regular Rust code, you'd probably use Vec. However, you can't simply generate widgets from a Vec. This is where factories are really useful. Custom collection types like FactoryVecDeque allow you to work with collections of data almost as comfortable as if they were stored in a Vec. At the same time, factories allow you to automatically visualize the data with widgets. Additionally, factories are very efficient by reducing the amount of UI updates to a minimum. The app we will write in this chapter is also available here . Run cargo run --example factory from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » Factories » Factories in Relm4","id":"61","title":"Factories in Relm4"},"62":{"body":"First, we define the struct Counter that just stores the value of a single counter. Later, we will use a FactoryVecDeque to store our counters. #[derive(Debug)]\nstruct Counter { value: u8,\n}","breadcrumbs":"Efficient UI updates » Factories » The model","id":"62","title":"The model"},"63":{"body":"Each counter should be able to increment and decrement. #[derive(Debug)]\nenum CounterMsg { Increment, Decrement,\n}","breadcrumbs":"Efficient UI updates » Factories » The input message type","id":"63","title":"The input message type"},"64":{"body":"A neat feature of factories is that each element can easily forward their output messages to the input of their parent component. For example, this is necessary for modifications that require access to the whole FactoryVecDeque, like moving an element to a new position. Therefore, these actions are covered by the output type. The actions we want to perform \"from outside\" are Move a counter up Move a counter down Move a counter to the first position Accordingly, our message type looks like this: #[derive(Debug)]\nenum CounterOutput { SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} You might wonder why DynamicIndex is used here. First, the parent component needs to know which element should be moved, which is defined by the index. Further, elements can move in the FactoryVecDeque. If we used usize as index instead, it could happen that the index points to another element by the time it is processed.","breadcrumbs":"Efficient UI updates » Factories » The output message type","id":"64","title":"The output message type"},"65":{"body":"Factories use the FactoryComponent trait which is very similar to regular components with some minor adjustments. For example, FactoryComponent needs the #[relm4::factory] attribute macro and a few more associated types in the trait implementation. #[relm4::factory]\nimpl FactoryComponent for Counter { type Init = u8; type Input = CounterMsg; type Output = CounterOutput; type CommandOutput = (); type ParentWidget = gtk::Box; Let's look at the associated types one by one: Init : The data required to initialize Counter, in this case the initial counter value. Input : The input message type. Output : The output message type. CommandOutput : The command output message type, we don't need it here. ParentWidget : The container widget used to store the widgets of the factory, for example gtk::Box.","breadcrumbs":"Efficient UI updates » Factories » The factory implementation","id":"65","title":"The factory implementation"},"66":{"body":"The widget creation works as usual with our trusty view macro. The only difference is that we use self to refer to the model due to differences in the FactoryComponent trait. view! { #[root] gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, #[name(label)] gtk::Label { #[watch] set_label: &self.value.to_string(), set_width_chars: 3, }, #[name(add_button)] gtk::Button { set_label: \"+\", connect_clicked => CounterMsg::Increment, }, #[name(remove_button)] gtk::Button { set_label: \"-\", connect_clicked => CounterMsg::Decrement, }, #[name(move_up_button)] gtk::Button { set_label: \"Up\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveUp(index.clone())).unwrap(); } }, #[name(move_down_button)] gtk::Button { set_label: \"Down\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveDown(index.clone())).unwrap(); } }, #[name(to_front_button)] gtk::Button { set_label: \"To Start\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::SendFront(index.clone())).unwrap(); } } } }","breadcrumbs":"Efficient UI updates » Factories » Creating the widget","id":"66","title":"Creating the widget"},"67":{"body":"FactoryComponent has separate functions for initializing the model and the widgets. This means, that we are a bit less flexible, but don't need view_output!() here. Also, we just need to implement the init_model function because init_widgets is already implemented by the macro. fn init_model(value: Self::Init, _index: &DynamicIndex, _sender: FactorySender) -> Self { Self { value } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the model","id":"67","title":"Initializing the model"},"68":{"body":"Now, we have implemented the FactoryComponent type for the elements in our factory. The only thing left to do is to write our main component to complete our app.","breadcrumbs":"Efficient UI updates » Factories » The main component","id":"68","title":"The main component"},"69":{"body":"For the main component we implement the familiar SimpleComponent trait. First we define the model and the input message type and then start the trait implementation. struct App { created_widgets: u8, counters: FactoryVecDeque,\n} #[derive(Debug)]\nenum AppMsg { AddCounter, RemoveCounter, SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::component]\nimpl SimpleComponent for App { type Init = u8; type Input = AppMsg; type Output = ();","breadcrumbs":"Efficient UI updates » Factories » The component types","id":"69","title":"The component types"},"7":{"body":"Before we start building our app, we need to understand the basic concepts of Relm4. If you have experience with GTK and Rust, you will probably breeze through this section, but if you don't, this section is for you. We will explain in detail how Relm4 works and how to use it. After this section, we will be building a simple counter app.","breadcrumbs":"Basic concepts » Basic concepts","id":"7","title":"Basic concepts"},"70":{"body":"We skip the view macro for a moment and look at the init method. You see that we are initializing the FactoryVecDeque using a builder pattern. First, we call FactoryVecDeque::builder() to create the builder and use launch() to set the root widget of the factory. This widget will store all the widgets created by the factory. Then, we use the forward() method to pass all output messages of our factory (with type CounterOutput) to the input of our component (with type AppMsg). The last trick we have up our sleeves is to define a local variable counter_box that is a reference to the container widget of our factory. We'll use it in the view macro in the next section. // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); let model = App { created_widgets: counter, counters, }; let counter_box = model.counters.widget(); let widgets = view_output!(); ComponentParts { model, widgets } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the factory","id":"70","title":"Initializing the factory"},"71":{"body":"The familiar view macro comes into play again. Most things should look familiar, but this time we use a #[local_ref] attribute for the last widget to use the local variable we defined in the previous section. This trick allows us to initialize the model with its FactoryVecDeque before the widgets, which is more convenient in most cases. view! { gtk::Window { set_title: Some(\"Factory example\"), set_default_size: (300, 100), gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Add counter\", connect_clicked => AppMsg::AddCounter, }, gtk::Button { set_label: \"Remove counter\", connect_clicked => AppMsg::RemoveCounter, }, #[local_ref] counter_box -> gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, } } } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the widgets","id":"71","title":"Initializing the widgets"},"72":{"body":"This time the main update function has actually quite a bit to do. The code should be quite readable if you worked with Vec or VecDeque before. One thing stands out though: We see a lot of calls to guard(). In fact, all mutating methods of FactoryVecDeque need an RAII-guard. This is similar to a MutexGuard you get from locking a mutex. The reason for this is simple. As long as the guard is alive, we can perform multiple operations. Once we're done, we just drop the guard (or rather leave the current scope) and this will cause the factory to update its widgets automatically. The neat thing: You can never forget to render changes, and the update algorithm can optimize widget updates for efficiency. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::AddCounter => { self.counters.guard().push_back(self.created_widgets); self.created_widgets = self.created_widgets.wrapping_add(1); } AppMsg::RemoveCounter => { self.counters.guard().pop_back(); } AppMsg::SendFront(index) => { self.counters.guard().move_front(index.current_index()); } AppMsg::MoveDown(index) => { let index = index.current_index(); let new_index = index + 1; // Already at the end? if new_index < self.counters.len() { self.counters.guard().move_to(index, new_index); } } AppMsg::MoveUp(index) => { let index = index.current_index(); // Already at the start? if index != 0 { self.counters.guard().move_to(index, index - 1); } } } }","breadcrumbs":"Efficient UI updates » Factories » The main update function","id":"72","title":"The main update function"},"73":{"body":"Awesome, we almost made it! We only need to define the main function to run our application. fn main() { let app = RelmApp::new(\"relm4.example.factory\"); app.run::(0);\n}","breadcrumbs":"Efficient UI updates » Factories » The main function","id":"73","title":"The main function"},"74":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::factory::{DynamicIndex, FactoryComponent, FactorySender, FactoryVecDeque};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; #[derive(Debug)]\nstruct Counter { value: u8,\n} #[derive(Debug)]\nenum CounterMsg { Increment, Decrement,\n} #[derive(Debug)]\nenum CounterOutput { SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::factory]\nimpl FactoryComponent for Counter { type Init = u8; type Input = CounterMsg; type Output = CounterOutput; type CommandOutput = (); type ParentWidget = gtk::Box; view! { #[root] gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, #[name(label)] gtk::Label { #[watch] set_label: &self.value.to_string(), set_width_chars: 3, }, #[name(add_button)] gtk::Button { set_label: \"+\", connect_clicked => CounterMsg::Increment, }, #[name(remove_button)] gtk::Button { set_label: \"-\", connect_clicked => CounterMsg::Decrement, }, #[name(move_up_button)] gtk::Button { set_label: \"Up\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveUp(index.clone())).unwrap(); } }, #[name(move_down_button)] gtk::Button { set_label: \"Down\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveDown(index.clone())).unwrap(); } }, #[name(to_front_button)] gtk::Button { set_label: \"To Start\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::SendFront(index.clone())).unwrap(); } } } } fn init_model(value: Self::Init, _index: &DynamicIndex, _sender: FactorySender) -> Self { Self { value } } fn update(&mut self, msg: Self::Input, _sender: FactorySender) { match msg { CounterMsg::Increment => { self.value = self.value.wrapping_add(1); } CounterMsg::Decrement => { self.value = self.value.wrapping_sub(1); } } }\n} struct App { created_widgets: u8, counters: FactoryVecDeque,\n} #[derive(Debug)]\nenum AppMsg { AddCounter, RemoveCounter, SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::component]\nimpl SimpleComponent for App { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Factory example\"), set_default_size: (300, 100), gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Add counter\", connect_clicked => AppMsg::AddCounter, }, gtk::Button { set_label: \"Remove counter\", connect_clicked => AppMsg::RemoveCounter, }, #[local_ref] counter_box -> gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); let model = App { created_widgets: counter, counters, }; let counter_box = model.counters.widget(); let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::AddCounter => { self.counters.guard().push_back(self.created_widgets); self.created_widgets = self.created_widgets.wrapping_add(1); } AppMsg::RemoveCounter => { self.counters.guard().pop_back(); } AppMsg::SendFront(index) => { self.counters.guard().move_front(index.current_index()); } AppMsg::MoveDown(index) => { let index = index.current_index(); let new_index = index + 1; // Already at the end? if new_index < self.counters.len() { self.counters.guard().move_to(index, new_index); } } AppMsg::MoveUp(index) => { let index = index.current_index(); // Already at the start? if index != 0 { self.counters.guard().move_to(index, index - 1); } } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.factory\"); app.run::(0);\n}","breadcrumbs":"Efficient UI updates » Factories » The complete code","id":"74","title":"The complete code"},"75":{"body":"Most widgets such as gtk::Box don't use the position function because they are one-dimensional and place widgets relative to each other. However, a few widgets such as gtk::Grid use fixed positions and need the position function to work inside a factory. The task of the position function is mainly to map the index to a certain position/area (x, y, width and height) of a factory widget within the parent widget (view). The code we will use in this chapter is based on the grid_factory example here . Run cargo run --example grid_factory from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » The position function » The position function","id":"75","title":"The position function"},"76":{"body":"Let's take a grid as an example. For a grid, there are many possibilities to place your widgets. You can, for example, place three, four or five widgets per row or you could place a certain amount of widgets per column. You can even create patterns like a chess grid if you want to. However, we want to use a factory for generating our widgets, which means we only have the index to calculate the desired two-dimensional position. In the simplest case, we create a layout that places a certain amount of widgets per row or per column. Grid layout example To place three elements per row from left to right in a gtk::Grid we could use the following position function. fn position(&self, index: &usize) -> GridPosition { let index = *index as i32; let row = index / 3; let column = index % 3; GridPosition { column, row, width: 1, height: 1, } } And indeed, it works as expected. Row placement grid screenshot","breadcrumbs":"Efficient UI updates » The position function » How it works","id":"76","title":"How it works"},"77":{"body":"Let's have a look at a more complex layout. It's unlikely that this would be used in a real application, but it's still interesting to have a look at it. To create a chess grid layout, we need to place our widgets only on fields of one color and leave the other fields empty. Grid layout example Actually, the code isn't too complicated. fn position(&self, index: &usize) -> GridPosition { let index = *index as i32; // add a new row for every 5 elements let row = index / 5; // use every second column and move columns in uneven rows by 1 let column = (index % 5) * 2 + row % 2; GridPosition { column, row, width: 1, height: 1, } } And as you can see, it works! Chess grid layout screenshot","breadcrumbs":"Efficient UI updates » The position function » A chess grid","id":"77","title":"A chess grid"},"78":{"body":"Technically, we already used components in the previous chapters. So far, we've only used one component per application, but in this chapter, we're going to use multiple components to structure our app. Components are independent parts of your application that can communicate with each other. They are used in a parent-child model: The main app component can have several components and each component can have child components and so on. This means that each component has a parent, except for the main app component which is at the top of this tree structure. To showcase this, we will create a small application which opens a dialog when the user tries to close it. The header bar and the dialog will be implemented as standalone components. App screenshot dark App screenshot dark","breadcrumbs":"Components » Components","id":"78","title":"Components"},"79":{"body":"Components are very useful for separating parts of the UI into smaller, more manageable parts. They are not necessary but for larger applications, they can be very helpful.","breadcrumbs":"Components » When to use components","id":"79","title":"When to use components"},"8":{"body":"Like a person, a computer needs a brain to be functional. It needs to process our messages and remember the results. Relm4 uses the term model as a data type that represents the application state, the memory of your application. For example, to store a counter value, we can store a u8 in our model: struct AppModel { counter: u8,\n}","breadcrumbs":"Basic concepts » Model » Model","id":"8","title":"Model"},"80":{"body":"Components store their child components inside the model as a Controller and handle output messages in the init function by calling the forward method. let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); The forward method will redirect the output messages from the child component and transform them into the parent's input messages. Components are independent from each another so a component can be used easily with several different parent components. Therefore, the child component doesn't know which type its parent component will have. Thus, the forward method allows the parent component to transform the output messages of child components to a message type it can handle properly. In this example, HeaderOutput messages are translated into AppMsg.","breadcrumbs":"Components » Message handling","id":"80","title":"Message handling"},"81":{"body":"Let's write a small example app to see how components can be used in action. For this example, we write parts of an app that can edit images. The app we will write in this chapter is also available here . Run cargo run --example components from the example directory if you want to see the code in action.","breadcrumbs":"Components » Example application","id":"81","title":"Example application"},"82":{"body":"Our first component will be a header bar. There are not a lot of advantages for writing this as component except for reducing the complexity in other parts of our UI. The header bar will have three buttons for three modes that our application can have: View : View the image. Edit : Edit the image. Export : Export the image in different formats. We will not implement the actual functionality, but instead use placeholders to keep things simple.","breadcrumbs":"Components » The header bar","id":"82","title":"The header bar"},"83":{"body":"Usually you want to store everything that affects only your component in the state of the component. However, in this case, there is no state that can be stored in the component, but only state that affects the root component (app). Therefore, we leave the model empty and only send messages to the root component. struct HeaderModel; The message type allows us to switch between the modes. #[derive(Debug)]\nenum HeaderOutput { View, Edit, Export,\n} Our component needs no update method, because the view can emit the component's output messages as part of its click signal handlers, as we will see in the next section.","breadcrumbs":"Components » The model","id":"83","title":"The model"},"84":{"body":"There's nothing special about widgets of a child component. The only difference to the main app component is that the root widget doesn't need to be a gtk::Window. Instead, we use a gtk::HeaderBar here, but theoretically the root widget doesn't even need to be a widget at all (which can be useful in special cases). view! { #[root] gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { add_css_class: \"linked\", #[name = \"group\"] gtk::ToggleButton { set_label: \"View\", set_active: true, connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::View).unwrap() } }, }, gtk::ToggleButton { set_label: \"Edit\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Edit).unwrap() } }, }, gtk::ToggleButton { set_label: \"Export\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Export).unwrap() } }, }, } } }","breadcrumbs":"Components » The widgets","id":"84","title":"The widgets"},"85":{"body":"As with a normal application used to edit files, we want to notify the user before they accidentally close the application and discard all progress. For this — you might have guessed it already — we will use another component.","breadcrumbs":"Components » The close alert","id":"85","title":"The close alert"},"86":{"body":"The state of the dialog only needs to store whether or not it's hidden. struct DialogModel { hidden: bool,\n} The message contains three options: Show is used by the parent to display the dialog. Accept is used internally to indicate that the user agreed to close the application. Cancel is used internally to indicate that the user changes his mind and doesn't want to close the application. #[derive(Debug)]\nenum DialogInput { Show, Accept, Cancel,\n} #[derive(Debug)]\nenum DialogOutput { Close,\n}","breadcrumbs":"Components » The model","id":"86","title":"The model"},"87":{"body":"Unlike the last component, the DialogModel component doesn't send its output messages from a signal handler. Instead, the response signal handler sends input messages to itself, handles them in update, and then sends output messages if necessary. This is a common pattern for more complex components. If your component accepts non-internal inputs as well, you may want to mark the internal variants as #[doc(hidden)] so that users of your component know they're only intended for internal use. view! { gtk::MessageDialog { set_modal: true, #[watch] set_visible: !model.hidden, set_text: Some(\"Do you want to close before saving?\"), set_secondary_text: Some(\"All unsaved changes will be lost\"), add_button: (\"Close\", gtk::ResponseType::Accept), add_button: (\"Cancel\", gtk::ResponseType::Cancel), connect_response[sender] => move |_, resp| { sender.input(if resp == gtk::ResponseType::Accept { DialogInput::Accept } else { DialogInput::Cancel }) } } } In the update implementation, we match the input messages and emit an output if needed. fn update(&mut self, msg: Self::Input, sender: ComponentSender) { match msg { DialogInput::Show => self.hidden = false, DialogInput::Accept => { self.hidden = true; sender.output(DialogOutput::Close).unwrap() } DialogInput::Cancel => self.hidden = true, } }","breadcrumbs":"Components » The widgets","id":"87","title":"The widgets"},"88":{"body":"Now all parts come together to form a single app.","breadcrumbs":"Components » The main app","id":"88","title":"The main app"},"89":{"body":"First, let's define the model of the main app and its messages. #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n} The AppMode struct stores the modes the application can be in. The SetMode message is transformed from the output of our header bar component to update the state of the main application when someone presses a button in the header bar. The Close message is transformed from the output of the dialog component to indicate that the window should be closed. In the model, we store the current AppMode as well as a Controller for each of our child components. The update function of the model is pretty straightforward. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::SetMode(mode) => { self.mode = mode; } AppMsg::CloseRequest => { self.dialog.sender().send(DialogInput::Show).unwrap(); } AppMsg::Close => { relm4::main_application().quit(); } } } We can retrieve a sender for the child component by calling the sender() method on the associated Controller, and then send messages of the associated Input type through it.","breadcrumbs":"Components » The model","id":"89","title":"The model"},"9":{"body":"To help the computer understand what we want to tell it, we first translate user interactions into messages. In Relm4, a message can be any data type, but most often, an enum is used. enum AppMsg { Increment, Decrement,\n} Computers are capable of both sending and receiving messages and similarly, components in Relm4 can send and receive messages. This is accomplished by having two types of messages: Input and Output.","breadcrumbs":"Basic concepts » Messages » Messages","id":"9","title":"Messages"},"90":{"body":"When initializing the app component, we construct the child components by passing the appropriate Init and forwarding any desired inputs and outputs. This is done through a builder provided by Component implementations. We pass the initial parameters via the launch method, and then retrieve the final Controller by calling the forward method. In addition to starting the component, the forward method allows us to take the outputs of the component, transform them with a mapping function, and then pass the result as an input message to another sender (in this case, the input sender of the app component). If you don't need to forward any outputs, you can start the component with the detach method instead. fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); let dialog = DialogModel::builder() .transient_for(&root) .launch(true) .forward(sender.input_sender(), |msg| match msg { DialogOutput::Close => AppMsg::Close, }); let model = AppModel { mode: params, header, dialog, }; let widgets = view_output!(); ComponentParts { model, widgets } } Also, we set the set_transient_for property, which actually uses the main window. The dialog should set his parent window so that GTK can handle the dialog better. The GTK docs state: \"[set_transient_for] allows window managers to e.g. keep the dialog on top of the main window, or center the dialog over the main window\". #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n}","breadcrumbs":"Components » Controllers","id":"90","title":"Controllers"},"91":{"body":"We're almost done! Lastly, let's take a look at the app widgets. view! { main_window = gtk::Window { set_default_width: 500, set_default_height: 250, set_titlebar: Some(model.header.widget()), gtk::Label { #[watch] set_label: &format!(\"Placeholder for {:?}\", model.mode), }, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop } } } Most notably, we retrieve the root widget of our header component through the widget() method on the associated Controller to set it as a child of the main window.","breadcrumbs":"Components » The widgets","id":"91","title":"The widgets"},"92":{"body":"You now know most of the secrets that Relm4 offers. Components can be powerful and if they are implemented correctly, they are even reusable across different apps. The relm4-components crate offers several reusable components you can use in your applications. In the following chapters, we'll look at an even simpler component type called worker, how to implement reusable components yourself and how to use components with async code and multiple threads.","breadcrumbs":"Components » Conclusion","id":"92","title":"Conclusion"},"93":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{ ApplicationExt, ButtonExt, DialogExt, GtkWindowExt, ToggleButtonExt, WidgetExt,\n};\nuse relm4::*; struct HeaderModel; #[derive(Debug)]\nenum HeaderOutput { View, Edit, Export,\n} #[relm4::component]\nimpl SimpleComponent for HeaderModel { type Init = (); type Input = (); type Output = HeaderOutput; view! { #[root] gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { add_css_class: \"linked\", #[name = \"group\"] gtk::ToggleButton { set_label: \"View\", set_active: true, connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::View).unwrap() } }, }, gtk::ToggleButton { set_label: \"Edit\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Edit).unwrap() } }, }, gtk::ToggleButton { set_label: \"Export\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Export).unwrap() } }, }, } } } fn init( _params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = HeaderModel; let widgets = view_output!(); ComponentParts { model, widgets } }\n} struct DialogModel { hidden: bool,\n} #[derive(Debug)]\nenum DialogInput { Show, Accept, Cancel,\n} #[derive(Debug)]\nenum DialogOutput { Close,\n} #[relm4::component]\nimpl SimpleComponent for DialogModel { type Init = bool; type Input = DialogInput; type Output = DialogOutput; view! { gtk::MessageDialog { set_modal: true, #[watch] set_visible: !model.hidden, set_text: Some(\"Do you want to close before saving?\"), set_secondary_text: Some(\"All unsaved changes will be lost\"), add_button: (\"Close\", gtk::ResponseType::Accept), add_button: (\"Cancel\", gtk::ResponseType::Cancel), connect_response[sender] => move |_, resp| { sender.input(if resp == gtk::ResponseType::Accept { DialogInput::Accept } else { DialogInput::Cancel }) } } } fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = DialogModel { hidden: params }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, sender: ComponentSender) { match msg { DialogInput::Show => self.hidden = false, DialogInput::Accept => { self.hidden = true; sender.output(DialogOutput::Close).unwrap() } DialogInput::Cancel => self.hidden = true, } }\n} #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = AppMode; type Input = AppMsg; type Output = (); view! { main_window = gtk::Window { set_default_width: 500, set_default_height: 250, set_titlebar: Some(model.header.widget()), gtk::Label { #[watch] set_label: &format!(\"Placeholder for {:?}\", model.mode), }, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop } } } fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); let dialog = DialogModel::builder() .transient_for(&root) .launch(true) .forward(sender.input_sender(), |msg| match msg { DialogOutput::Close => AppMsg::Close, }); let model = AppModel { mode: params, header, dialog, }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::SetMode(mode) => { self.mode = mode; } AppMsg::CloseRequest => { self.dialog.sender().send(DialogInput::Show).unwrap(); } AppMsg::Close => { relm4::main_application().quit(); } } }\n} fn main() { let relm = RelmApp::new(\"ewlm4.test.components\"); relm.run::(AppMode::Edit);\n}","breadcrumbs":"Components » The complete code","id":"93","title":"The complete code"},"94":{"body":"Most user inputs are fairly easy to process. After receiving a message, you process it in the update function and update the view. Everything only takes a couple of milliseconds at most, so the user won't even notice the slight delay. However, when you have to perform complex calculations or I/O-bound operations that take more than a couple of milliseconds to complete, the user will start noticing that the app doesn't feel reactive or \"snappy\" anymore. For example, such operations are performing network requests, filesystems operations or calculating the last digit of π. To better visualize what happens, let's look at the following image. The expected behavior is on the left, where processing of updates is fast and the app spends most of the time idle, waiting for new user inputs (aka events). Yet on the right, the update function is very slow and blocks the entire application so that no other events can be processed in the meantime and the view update is delayed. The behavior on the right will freeze the entire application and should be avoided. Fortunately, Relm4 gives you plenty of options to keep your application responsive.","breadcrumbs":"Threads and async » Introduction","id":"94","title":"Introduction"},"95":{"body":"In general, we can divide the problem into two categories: CPU-bound operations take a lot of time because actual work needs to be done by the CPU. I/O-bound operations take a lot of time because we have to wait for something to happen, for example, a response from a server. This means that we have CPU resources to do other things in the meantime, but to use them, we need a mechanism like async/await.","breadcrumbs":"Threads and async » Understanding the problem","id":"95","title":"Understanding the problem"},"96":{"body":"Let's look at an example of a CPU-bound operation. For an app that generates cryptographic keys, you might define a generate_rsa_key() function. This function takes some time to compute because generating the key is a difficult calculation so we can treat it as if it was implemented like this: fn generate_rsa_key() { std::thread::sleep(Duration::from_secs(10));\n} If our component receives a GenerateKey message, we start generating the key. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::GenerateKey => { self.rsa_key = generate_rsa_key(); } } } Unfortunately, this will freeze our app. There's no trick to avoid this, the CPU must do a lot of work to calculate the result. However, we can offload this work to other threads to keep our application responsive. Possible solutions for this problem are: Workers : A component without widgets that runs on its own thread Commands : Offload tasks to a runtime in the background and receive a message when the task completes Both are covered in the following chapters.","breadcrumbs":"Threads and async » CPU-bound and other synchronous operations","id":"96","title":"CPU-bound and other synchronous operations"},"97":{"body":"Let's say we also need to perform a web-request to fetch existing encryption keys from a server. In theory, we could use a blocking HTTP client which would put us in the same situation as before. However, using async/await allows us to use the CPU for other things while we're waiting for the response. The resulting asynchronous function could look like this. async fn fetch_rsa_key() { tokio::time::sleep(Duration::from_secs(10)).await;\n} Since we now have an asynchronous function, we can't simply call it like a regular function. Again, there are two options to make this work: Async components and factories : Asynchronous traits for components and factories Commands : Offload tasks to a runtime in the background and receive a message when the task completes","breadcrumbs":"Threads and async » I/O-bound and other async operations","id":"97","title":"I/O-bound and other async operations"},"98":{"body":"Workers are simply components that don't have any widgets. They can be quite useful for applications that need to handle long tasks while remaining responsive. In particular, they are suitable for CPU-bound tasks which need to be handled one at the time because they run on a different thread.","breadcrumbs":"Threads and async » Workers » Workers","id":"98","title":"Workers"},"99":{"body":"A worker is implemented similarly to a component by using the Worker trait. Since workers don't have widgets, you don't need to provide a Widgets type. #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[derive(Debug)]\nenum AsyncHandlerMsg { DelayedIncrement, DelayedDecrement,\n} struct AsyncHandler; impl Worker for AsyncHandler { type Init = (); type Input = AsyncHandlerMsg; type Output = AppMsg; fn init(_init: Self::Init, _sender: ComponentSender) -> Self { Self } fn update(&mut self, msg: AsyncHandlerMsg, sender: ComponentSender) { // Simulating heavy CPU-bound task std::thread::sleep(Duration::from_secs(1)); // Send the result of the calculation back match msg { AsyncHandlerMsg::DelayedIncrement => sender.output(AppMsg::Increment), AsyncHandlerMsg::DelayedDecrement => sender.output(AppMsg::Decrement), } .unwrap() }\n} Workers are constructed similarly to components, too. Use the provided builder to retrieve a WorkerController. fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = AppModel { counter: 0, worker: AsyncHandler::builder() .detach_worker(()) .forward(sender.input_sender(), identity), }; let widgets = view_output!(); ComponentParts { model, widgets } } Through the WorkerController, you can send and receive messages from the worker. The worker's update function will run on a separate thread, so your other components won't be blocked. struct AppModel { counter: u8, worker: WorkerController,\n}","breadcrumbs":"Threads and async » Workers » Implementing a worker","id":"99","title":"Implementing a worker"}},"length":188,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{".":{"=":{"2":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{".":{"1":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":2,"docs":{"164":{"tf":1.0},"170":{"tf":1.0}}},"5":{"df":1,"docs":{"168":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"2":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"9":{".":{"1":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"a":{"d":{"5":{"c":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":2.6457513110645907},"160":{"tf":3.7416573867739413},"162":{"tf":4.242640687119285},"41":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"1":{".":{"7":{"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":2.0},"59":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0}}},"3":{"df":1,"docs":{"1":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544},"21":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"2":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"77":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"x":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"3":{"0":{"0":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"4":{"0":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"2":{"df":6,"docs":{"107":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}},"5":{"0":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"8":{"df":2,"docs":{"1":{"tf":1.0},"132":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"4":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"6":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"162":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":2.449489742783178},"162":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"9":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"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":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"5":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"6":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"7":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"8":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"9":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"115":{"tf":1.0},"144":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"124":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"125":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"132":{"tf":1.0}}}}},"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"174":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":9,"docs":{"115":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"65":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"15":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"48":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"29":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"119":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"a":{"df":2,"docs":{"153":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}},"df":5,"docs":{"107":{"tf":2.6457513110645907},"108":{"tf":2.8284271247461903},"109":{"tf":2.0},"110":{"tf":3.1622776601683795},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772}},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":2.0},"110":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"i":{"a":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"159":{"tf":4.69041575982343},"162":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"113":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"103":{"tf":1.0},"144":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"103":{"tf":1.0},"167":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"0":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":61,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"107":{"tf":2.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":3.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"78":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":32,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":23,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"18":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"131":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"90":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"148":{"tf":1.0}}},"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":6,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"174":{"tf":1.0},"30":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":3.1622776601683795},"120":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"174":{"tf":1.4142135623730951},"35":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"144":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":3.605551275463989},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"92":{"tf":1.0},"97":{"tf":1.7320508075688772}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"[":{"0":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}},"1":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"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":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.0},"71":{"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":18,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"187":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"170":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"r":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":3,"docs":{"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"184":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"186":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"103":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"137":{"tf":1.0},"144":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"d":{"df":2,"docs":{"125":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":2.0},"167":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"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":1,"docs":{"154":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":13,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"43":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"u":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}},"df":16,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.4142135623730951},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"44":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"130":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"108":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"15":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"170":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"133":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":15,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"149":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"42":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.6457513110645907},"164":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"138":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":2.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"83":{"tf":1.0}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"148":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"101":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"m":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"128":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":2.0},"77":{"tf":2.0}}}}}},"m":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"df":13,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"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":{},"g":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"100":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"142":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"78":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"x":{"df":7,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"100":{"tf":2.0},"103":{"tf":3.3166247903554},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"108":{"tf":3.872983346207417},"109":{"tf":2.6457513110645907},"11":{"tf":2.6457513110645907},"110":{"tf":2.0},"114":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.0},"138":{"tf":2.23606797749979},"14":{"tf":2.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":3.605551275463989},"170":{"tf":1.7320508075688772},"171":{"tf":2.8284271247461903},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":3.1622776601683795},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"21":{"tf":3.1622776601683795},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":3.4641016151377544},"79":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":2.0},"9":{"tf":1.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.0},"92":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":18,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"57":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"126":{"tf":1.0},"148":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":2.0}},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"181":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"136":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"6":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"125":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"1":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"1":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":2.0},"162":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"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":1,"docs":{"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"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":{},"f":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"148":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":2.8284271247461903},"160":{"tf":2.449489742783178},"162":{"tf":2.6457513110645907}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":40,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"18":{"tf":1.0},"185":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":3.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"112":{"tf":1.0},"44":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"108":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":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":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"32":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"156":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"r":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"38":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"171":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":10,"docs":{"107":{"tf":2.0},"108":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"110":{"tf":3.605551275463989},"167":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"146":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"95":{"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":3,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"12":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"58":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"144":{"tf":1.0},"167":{"tf":1.0},"183":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"115":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"178":{"tf":1.0},"21":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"119":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"140":{"tf":1.0},"27":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"149":{"tf":1.0},"173":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"d":{"df":6,"docs":{"120":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.7320508075688772},"156":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"183":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"169":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":51,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":3.3166247903554},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"138":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"57":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"103":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"128":{"tf":1.0},"173":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"173":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"122":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":1,"docs":{"162":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"35":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":2.449489742783178},"162":{"tf":2.8284271247461903},"20":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":3.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":2.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":28,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}},"x":{"df":3,"docs":{"119":{"tf":1.0},"39":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"45":{"tf":2.23606797749979},"46":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"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":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"110":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":2.0},"162":{"tf":3.872983346207417},"185":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":2.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"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":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772},"90":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":4,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"z":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"31":{"tf":1.0}},"i":{"df":5,"docs":{"125":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":46,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.8284271247461903},"106":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"64":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.4142135623730951}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":3.0},"165":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"21":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"h":{"c":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}}},"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":{"4":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"b":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":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":{"133":{"tf":2.0}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"45":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"w":{"df":1,"docs":{"36":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}}},"4":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.6457513110645907},"12":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.4142135623730951},"6":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":5,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"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":{},"i":{"d":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":3.0},"162":{"tf":3.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"157":{"tf":3.3166247903554},"159":{"tf":3.605551275463989},"162":{"tf":3.605551275463989},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"{":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"_":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}}}}}},"df":29,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"173":{"tf":1.4142135623730951},"57":{"tf":1.0},"72":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"163":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"l":{"df":14,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"167":{"tf":1.0},"30":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"167":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"p":{"df":15,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":4.47213595499958},"124":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"79":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"172":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"150":{"tf":1.0},"35":{"tf":1.0}}},"df":31,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"131":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"100":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":11,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"157":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":2,"docs":{"159":{"tf":1.0},"176":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"173":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":41,"docs":{"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":2.0},"152":{"tf":1.0},"160":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"164":{"tf":1.0},"6":{"tf":1.0}}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"131":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"i":{"c":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"146":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"103":{"tf":1.0},"167":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"_":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":38,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"20":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"45":{"tf":2.449489742783178}}},"n":{"c":{"df":3,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"15":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}},"f":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"129":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"106":{"tf":1.0}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"t":{"'":{"df":15,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":2.0},"35":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"160":{"tf":1.0}}}},"y":{"df":2,"docs":{"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":2.0},"25":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"35":{"tf":1.0}},"r":{"df":7,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"154":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":5,"docs":{"171":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":2.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"129":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"'":{"df":31,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}},"’":{"df":2,"docs":{"110":{"tf":1.0},"122":{"tf":1.0}}}}},"i":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"15":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"16":{"tf":2.0},"5":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"119":{"tf":1.0},"160":{"tf":1.0}}},"k":{"df":6,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":2.0},"148":{"tf":1.0},"150":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}}},"o":{"a":{"d":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"4":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"157":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":7,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"30":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"111":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":3,"docs":{"172":{"tf":1.0},"23":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":15,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":50,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.0},"112":{"tf":1.7320508075688772},"129":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":2.0},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"158":{"tf":1.0},"160":{"tf":3.1622776601683795},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"24":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":35,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"76":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":10,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"90":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"k":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"7":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"8":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.0},"165":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"0":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"137":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":47,"docs":{"10":{"tf":2.6457513110645907},"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":2.449489742783178},"11":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"12":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"21":{"tf":3.1622776601683795},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":2.0},"9":{"tf":2.449489742783178},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"41":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"142":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"120":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"74":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"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":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"178":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":50,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":2.23606797749979},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"115":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":7,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":2.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":2.8284271247461903},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"28":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"174":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"146":{"tf":1.0},"72":{"tf":1.0}}}},"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":2.0},"162":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"142":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"144":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"160":{"tf":1.4142135623730951},"54":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"38":{"tf":1.0}}},"h":{"df":3,"docs":{"146":{"tf":1.0},"161":{"tf":1.0},"84":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"115":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"df":30,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"135":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"123":{"tf":1.4142135623730951},"42":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"d":{"df":5,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"46":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":3,"docs":{"174":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":6,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"124":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.0},"167":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"128":{"tf":1.0},"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"105":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"135":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"1":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"119":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"74":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.0},"122":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"145":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"108":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":14,"docs":{"108":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"38":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":2,"docs":{"119":{"tf":2.0},"57":{"tf":1.4142135623730951}}},"t":{"df":21,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"142":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"119":{"tf":1.0},"148":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"145":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}}}},"y":{"df":2,"docs":{"21":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951}},"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":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"2":{"4":{"df":0,"docs":{},"x":{"2":{"4":{"/":{"a":{"c":{"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":1,"docs":{"101":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"146":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":4,"docs":{"16":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"127":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"160":{"tf":1.0},"186":{"tf":1.0},"37":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"138":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":2,"docs":{"166":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":2.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":4,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":2.6457513110645907},"126":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":2.8284271247461903},"160":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"44":{"tf":2.0},"90":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"0":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"df":3,"docs":{"108":{"tf":3.3166247903554},"110":{"tf":3.3166247903554},"139":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"112":{"tf":1.0},"139":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":4,"docs":{"160":{"tf":1.0},"20":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"168":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"138":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"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":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"105":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0}},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"153":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"72":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":2.23606797749979},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"48":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":4,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"113":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"183":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"15":{"tf":1.0}}}},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"4":{"'":{"df":3,"docs":{"144":{"tf":1.0},"165":{"tf":1.0},"39":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"185":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":7,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":48,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"a":{"d":{"d":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"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":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951},"93":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"v":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"180":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"173":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"120":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"4":{"tf":1.0}}},"y":{"]":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"108":{"tf":3.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"167":{"tf":1.0},"178":{"tf":1.0}}},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"57":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"4":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":2.449489742783178},"137":{"tf":2.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"171":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":14,"docs":{"1":{"tf":1.7320508075688772},"103":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":2.449489742783178},"46":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"60":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":1,"docs":{"23":{"tf":1.0}}},"n":{"df":2,"docs":{"161":{"tf":1.0},"24":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"35":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{".":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":1,"docs":{"162":{"tf":1.0}}},"4":{"df":1,"docs":{"162":{"tf":1.0}}},"5":{"df":1,"docs":{"162":{"tf":1.0}}},"6":{"df":1,"docs":{"162":{"tf":1.0}}},"7":{"df":1,"docs":{"162":{"tf":1.0}}},"8":{"df":1,"docs":{"162":{"tf":1.0}}},"9":{"df":1,"docs":{"162":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":1,"docs":{"162":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"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":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.0},"74":{"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":{},"o":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"162":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":2.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"n":{"d":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"148":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"170":{"tf":1.0},"30":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"170":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":12,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"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":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":3.3166247903554},"160":{"tf":2.449489742783178},"162":{"tf":2.0},"174":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"84":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"144":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":16,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":3.0},"110":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":2.0},"130":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"162":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"4":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"30":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":2.449489742783178},"125":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"52":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":1.0}},"n":{"df":2,"docs":{"128":{"tf":1.0},"137":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"108":{"tf":1.0},"126":{"tf":2.6457513110645907},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"187":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"i":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"155":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"157":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"153":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"0":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}},"i":{"df":6,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"23":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"d":{"df":2,"docs":{"119":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"t":{"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"106":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"c":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"d":{":":{":":{"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":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"2":{"1":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"96":{"tf":1.0}}},"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"177":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}},"p":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":45,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"167":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}},"i":{"df":3,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.4142135623730951},"184":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":3.0},"59":{"tf":3.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"(":{"4":{"2":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"b":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"106":{"tf":2.449489742783178},"75":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"40":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":4.242640687119285},"114":{"tf":2.8284271247461903},"115":{"tf":2.23606797749979},"116":{"tf":2.8284271247461903},"117":{"tf":3.0},"118":{"tf":2.0},"129":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":2.449489742783178},"109":{"tf":2.0},"110":{"tf":2.8284271247461903},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":2.0}}}},"t":{"'":{"df":8,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"157":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"135":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":10,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"k":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":2,"docs":{"15":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"44":{"tf":1.0}}}},"p":{"df":6,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"59":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":2.6457513110645907},"15":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"130":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"153":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"df":5,"docs":{"119":{"tf":1.0},"164":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"146":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":14,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":56,"docs":{"100":{"tf":2.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"162":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":3.7416573867739413},"23":{"tf":2.0},"25":{"tf":2.8284271247461903},"27":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0},"99":{"tf":2.0}}}}}},"u":{"6":{"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{")":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":3.1622776601683795},"177":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"i":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":2.6457513110645907},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"38":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.0},"183":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"120":{"tf":1.0},"159":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"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":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.6457513110645907},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":2.0},"48":{"tf":3.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"120":{"tf":1.7320508075688772},"128":{"tf":1.0}}}},"df":110,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":3.1622776601683795},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"108":{"tf":1.0}}},"df":15,"docs":{"108":{"tf":2.449489742783178},"110":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.0}}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":3,"docs":{"164":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0}}},"5":{"df":3,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"7":{"df":2,"docs":{"182":{"tf":1.0},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":25,"docs":{"102":{"tf":1.4142135623730951},"114":{"tf":1.0},"144":{"tf":2.0},"146":{"tf":2.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"19":{"tf":1.0},"20":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"e":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"!":{"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"u":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"173":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"1":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"a":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"175":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}}}},"df":55,"docs":{"103":{"tf":2.0},"104":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"31":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":5,"docs":{"103":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}},"b":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"135":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":83,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"110":{"tf":2.8284271247461903},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"12":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.6457513110645907},"142":{"tf":2.449489742783178},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":3.1622776601683795},"146":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":3.0},"162":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":2.0},"21":{"tf":4.123105625617661},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"27":{"tf":2.6457513110645907},"29":{"tf":2.0},"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":3.1622776601683795},"45":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"84":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"93":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"43":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"21":{"tf":1.0},"25":{"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.0},"124":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"144":{"tf":1.0},"166":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"164":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"103":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":40,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":2.0},"17":{"tf":1.0},"173":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"171":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":3.0}}}}},"l":{"d":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"142":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":4,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"174":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"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":15,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}}}}},"x":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"y":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"119":{"tf":1.0},"49":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{".":{"=":{"2":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{".":{"1":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":15,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}},"5":{"df":14,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"2":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0}}},"7":{"df":7,"docs":{"157":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"9":{".":{"1":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"a":{"d":{"5":{"c":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":2.6457513110645907},"160":{"tf":3.7416573867739413},"162":{"tf":4.242640687119285},"41":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"1":{".":{"7":{"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":2.0},"59":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0}}},"3":{"df":1,"docs":{"1":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544},"21":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"2":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"77":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"x":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"3":{"0":{"0":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"4":{"0":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"2":{"df":6,"docs":{"107":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}},"5":{"0":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"8":{"df":2,"docs":{"1":{"tf":1.0},"132":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"4":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"6":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"162":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":2.449489742783178},"162":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"9":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"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":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"5":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"6":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"7":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"8":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"9":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"115":{"tf":1.0},"144":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"124":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":2.0},"16":{"tf":1.0},"181":{"tf":1.7320508075688772},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"125":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"132":{"tf":1.0}}}}},"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.7320508075688772},"160":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"174":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":9,"docs":{"115":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"65":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"15":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"48":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"29":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"119":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"a":{"df":2,"docs":{"153":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}},"df":5,"docs":{"107":{"tf":2.6457513110645907},"108":{"tf":3.0},"109":{"tf":2.0},"110":{"tf":3.1622776601683795},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772}},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":2.0},"110":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"i":{"a":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"159":{"tf":4.69041575982343},"162":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"113":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"103":{"tf":1.0},"144":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"103":{"tf":1.0},"167":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"0":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":62,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"107":{"tf":2.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":3.3166247903554},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"78":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":32,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":23,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"18":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"131":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"90":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"148":{"tf":1.0}}},"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":6,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"174":{"tf":1.0},"30":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":3.1622776601683795},"120":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"174":{"tf":1.4142135623730951},"35":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"144":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":17,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":4.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"170":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"[":{"0":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}},"1":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"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":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":2.8284271247461903},"65":{"tf":1.0},"71":{"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":18,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"187":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"170":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"r":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":3,"docs":{"78":{"tf":1.0},"82":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}},"i":{"c":{"df":12,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"184":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"186":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"103":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"137":{"tf":1.0},"144":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"d":{"df":2,"docs":{"125":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.4142135623730951},"160":{"tf":2.0},"167":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"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":1,"docs":{"154":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":13,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"43":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"u":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}},"df":16,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.4142135623730951},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"44":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"130":{"tf":2.23606797749979},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"108":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"15":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"170":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"133":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}}},"df":15,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"149":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"42":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.6457513110645907},"164":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"138":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":18,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"142":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":2.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"83":{"tf":1.0}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"148":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"101":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"m":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"141":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"128":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":2.0},"77":{"tf":2.0}}}}}},"m":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"df":14,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"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":{},"g":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"100":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"142":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"47":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"78":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"x":{"df":7,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":93,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"100":{"tf":2.0},"103":{"tf":3.605551275463989},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.6457513110645907},"108":{"tf":4.123105625617661},"109":{"tf":2.8284271247461903},"11":{"tf":2.6457513110645907},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.449489742783178},"138":{"tf":2.6457513110645907},"139":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.0},"169":{"tf":3.7416573867739413},"170":{"tf":1.7320508075688772},"171":{"tf":3.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":3.1622776601683795},"183":{"tf":2.0},"184":{"tf":1.0},"21":{"tf":3.3166247903554},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":3.7416573867739413},"79":{"tf":2.0},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"9":{"tf":1.0},"90":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":18,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.0},"57":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"126":{"tf":1.0},"148":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":2.0}},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":2.0},"160":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"90":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"181":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"6":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"125":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"1":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"1":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":2.0},"162":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"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":1,"docs":{"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"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":{},"f":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"148":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":2.8284271247461903},"160":{"tf":2.449489742783178},"162":{"tf":2.6457513110645907}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":40,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"18":{"tf":1.0},"185":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":3.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"112":{"tf":1.0},"44":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"108":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"134":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":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":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"32":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":2.449489742783178}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"156":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"r":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"38":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"171":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":10,"docs":{"107":{"tf":2.0},"108":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"110":{"tf":3.605551275463989},"167":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"42":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"146":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"95":{"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":3,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"43":{"tf":1.4142135623730951},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"12":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"58":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"144":{"tf":1.0},"167":{"tf":1.0},"183":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"115":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"178":{"tf":1.0},"21":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"119":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"140":{"tf":1.0},"27":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"149":{"tf":1.0},"173":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":31,"docs":{"160":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"d":{"df":6,"docs":{"120":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.7320508075688772},"156":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"183":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"169":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":51,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":3.4641016151377544},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"138":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"57":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"103":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"128":{"tf":1.0},"173":{"tf":2.0},"184":{"tf":1.7320508075688772},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"165":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"173":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"122":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":1,"docs":{"162":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"35":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":2.449489742783178},"162":{"tf":2.8284271247461903},"20":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":3.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":2.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}},"x":{"df":3,"docs":{"119":{"tf":1.0},"39":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"45":{"tf":2.23606797749979},"46":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"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":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"110":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":2.0},"162":{"tf":3.872983346207417},"185":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":2.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"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":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772},"90":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":4,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"z":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"31":{"tf":1.0}},"i":{"df":5,"docs":{"125":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.8284271247461903},"106":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"64":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.4142135623730951}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":3.0},"165":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"21":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"h":{"c":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}}},"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":{"4":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"137":{"tf":1.7320508075688772},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"b":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":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":{"133":{"tf":2.0}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"45":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"w":{"df":1,"docs":{"36":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}}},"4":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.6457513110645907},"12":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.4142135623730951},"6":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":5,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"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":{},"i":{"d":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":3.0},"162":{"tf":3.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"157":{"tf":3.3166247903554},"159":{"tf":3.605551275463989},"162":{"tf":3.605551275463989},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"{":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"_":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}}}}}},"df":29,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.23606797749979},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"173":{"tf":1.4142135623730951},"57":{"tf":1.0},"72":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"l":{"df":14,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"167":{"tf":1.0},"30":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"167":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"p":{"df":15,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":4.47213595499958},"124":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"79":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"172":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"150":{"tf":1.0},"35":{"tf":1.0}}},"df":31,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"131":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"100":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"3":{"2":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":11,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"157":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":2,"docs":{"159":{"tf":1.0},"176":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"173":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":41,"docs":{"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":2.0},"152":{"tf":1.0},"160":{"tf":2.6457513110645907},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"164":{"tf":1.0},"6":{"tf":1.0}}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"131":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"i":{"c":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"146":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"103":{"tf":1.0},"167":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"_":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":38,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"20":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":2.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"45":{"tf":2.449489742783178}}},"n":{"c":{"df":3,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"15":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}},"f":{"a":{"c":{"df":5,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"106":{"tf":1.0}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.7320508075688772},"24":{"tf":1.0}}}}},"t":{"'":{"df":15,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":2.0},"35":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"160":{"tf":1.0}}}},"y":{"df":2,"docs":{"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":2.0},"25":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"35":{"tf":1.0}},"r":{"df":7,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"154":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":5,"docs":{"171":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":2.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"129":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"'":{"df":31,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}},"’":{"df":2,"docs":{"110":{"tf":1.0},"122":{"tf":1.0}}}}},"i":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"15":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"16":{"tf":2.0},"5":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0}}},"k":{"df":6,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":2.23606797749979},"148":{"tf":1.0},"150":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}}},"o":{"a":{"d":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"4":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"157":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":7,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"30":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"111":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":3,"docs":{"172":{"tf":1.0},"23":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":15,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":59,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.0},"112":{"tf":1.7320508075688772},"129":{"tf":1.0},"138":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":2.8284271247461903},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":2.8284271247461903},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.8284271247461903},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"24":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":35,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.0},"59":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"76":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":10,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"90":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"k":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"7":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"8":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.0},"165":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"0":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"137":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":47,"docs":{"10":{"tf":3.0},"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":2.449489742783178},"11":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"12":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":2.0},"167":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":2.0},"9":{"tf":2.8284271247461903},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"43":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":25,"docs":{"163":{"tf":2.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"142":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"120":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"74":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"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":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"178":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":50,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":2.23606797749979},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"21":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"54":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":2.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"115":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":7,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":2.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":2.8284271247461903},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"28":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"174":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"146":{"tf":1.0},"72":{"tf":1.0}}}},"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":2.0},"162":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"142":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"144":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"160":{"tf":1.4142135623730951},"54":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"38":{"tf":1.0}}},"h":{"df":3,"docs":{"146":{"tf":1.0},"161":{"tf":1.0},"84":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"115":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"df":30,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"135":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"123":{"tf":1.4142135623730951},"42":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"d":{"df":5,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"46":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":3,"docs":{"174":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":6,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"124":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.0},"167":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"128":{"tf":1.0},"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"105":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"135":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"1":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"119":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"74":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":11,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"145":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"108":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":14,"docs":{"108":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"38":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":2,"docs":{"119":{"tf":2.0},"57":{"tf":1.4142135623730951}}},"t":{"df":21,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"142":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"119":{"tf":1.0},"148":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"145":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}}}},"y":{"df":2,"docs":{"21":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.7320508075688772},"77":{"tf":1.0}},"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":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"2":{"4":{"df":0,"docs":{},"x":{"2":{"4":{"/":{"a":{"c":{"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":1,"docs":{"101":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"146":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":4,"docs":{"16":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"127":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"160":{"tf":1.0},"186":{"tf":1.0},"37":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"138":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":2,"docs":{"166":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":2.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":4,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":2.8284271247461903},"126":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":3.0},"160":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":2.0},"90":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"0":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"df":3,"docs":{"108":{"tf":3.3166247903554},"110":{"tf":3.3166247903554},"139":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"112":{"tf":1.0},"139":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":4,"docs":{"160":{"tf":1.0},"20":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"168":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"138":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"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":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"105":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"153":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"72":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":2.23606797749979},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"48":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":4,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":35,"docs":{"113":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":2.0},"183":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"15":{"tf":1.0}}}},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"4":{"'":{"df":3,"docs":{"144":{"tf":1.0},"165":{"tf":1.0},"39":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"185":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":7,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":48,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"a":{"d":{"d":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"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":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951},"93":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"v":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"180":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"173":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"120":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"4":{"tf":1.0}}},"y":{"]":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.7320508075688772},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"108":{"tf":3.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"148":{"tf":1.0},"170":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"167":{"tf":1.0},"178":{"tf":1.0}}},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"57":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"4":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"6":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":2.449489742783178},"137":{"tf":2.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"171":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":14,"docs":{"1":{"tf":1.7320508075688772},"103":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":2.449489742783178},"46":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":1,"docs":{"23":{"tf":1.0}}},"n":{"df":2,"docs":{"161":{"tf":1.0},"24":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"35":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{".":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":1,"docs":{"162":{"tf":1.0}}},"4":{"df":1,"docs":{"162":{"tf":1.0}}},"5":{"df":1,"docs":{"162":{"tf":1.0}}},"6":{"df":1,"docs":{"162":{"tf":1.0}}},"7":{"df":1,"docs":{"162":{"tf":1.0}}},"8":{"df":1,"docs":{"162":{"tf":1.0}}},"9":{"df":1,"docs":{"162":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":1,"docs":{"162":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"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":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.0},"74":{"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":{},"o":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"162":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":2.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"n":{"d":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"148":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":2.449489742783178},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"170":{"tf":1.0},"30":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"170":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":12,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"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":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":3.3166247903554},"160":{"tf":2.449489742783178},"162":{"tf":2.0},"174":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"84":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"144":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":16,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":3.0},"110":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":2.23606797749979},"130":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"162":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"4":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"30":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":2.449489742783178},"125":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"52":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":1.0}},"n":{"df":2,"docs":{"128":{"tf":1.0},"137":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"108":{"tf":1.0},"126":{"tf":2.8284271247461903},"148":{"tf":1.7320508075688772},"149":{"tf":2.6457513110645907},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"187":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"i":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"155":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"157":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"153":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"0":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}},"i":{"df":6,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"23":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"d":{"df":2,"docs":{"119":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"t":{"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"106":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"c":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"d":{":":{":":{"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":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"2":{"1":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"96":{"tf":1.0}}},"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"177":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}},"p":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":45,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"167":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}},"i":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.4142135623730951},"184":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":3.0},"59":{"tf":3.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"(":{"4":{"2":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"b":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":2.0},"101":{"tf":2.0},"102":{"tf":1.0},"106":{"tf":2.449489742783178},"75":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"40":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":2.449489742783178},"112":{"tf":2.6457513110645907},"113":{"tf":4.47213595499958},"114":{"tf":3.1622776601683795},"115":{"tf":2.449489742783178},"116":{"tf":3.0},"117":{"tf":3.4641016151377544},"118":{"tf":2.449489742783178},"129":{"tf":2.0},"46":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":2.449489742783178},"109":{"tf":2.0},"110":{"tf":2.8284271247461903},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":2.23606797749979}}}},"t":{"'":{"df":8,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"157":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"135":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":10,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"k":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":2,"docs":{"15":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":14,"docs":{"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"44":{"tf":1.0}}}},"p":{"df":6,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":3.3166247903554},"59":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.8284271247461903},"50":{"tf":1.7320508075688772},"51":{"tf":2.6457513110645907},"52":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"15":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"130":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"153":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"df":5,"docs":{"119":{"tf":1.0},"164":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"146":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":14,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":56,"docs":{"100":{"tf":2.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"162":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":3.7416573867739413},"23":{"tf":2.0},"25":{"tf":2.8284271247461903},"27":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0},"99":{"tf":2.0}}}}}},"u":{"6":{"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{")":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":3.1622776601683795},"177":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"i":{"df":47,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"48":{"tf":3.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"38":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.0},"183":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"120":{"tf":1.0},"159":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"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":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":56,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.6457513110645907},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":2.0},"37":{"tf":2.0},"48":{"tf":3.3166247903554},"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"128":{"tf":1.0}}}},"df":110,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":3.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":3.1622776601683795},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"108":{"tf":1.0}}},"df":15,"docs":{"108":{"tf":2.449489742783178},"110":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.0}}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"5":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"182":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":25,"docs":{"102":{"tf":1.4142135623730951},"114":{"tf":1.0},"144":{"tf":2.0},"146":{"tf":2.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"19":{"tf":1.0},"20":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"e":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"!":{"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"u":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"173":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"1":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"a":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"175":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}}}},"df":55,"docs":{"103":{"tf":2.0},"104":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":2.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":2.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"31":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":5,"docs":{"103":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}},"b":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"135":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":83,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"113":{"tf":2.23606797749979},"114":{"tf":2.0},"115":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.0},"12":{"tf":3.1622776601683795},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.8284271247461903},"142":{"tf":2.6457513110645907},"143":{"tf":2.23606797749979},"144":{"tf":2.23606797749979},"145":{"tf":3.3166247903554},"146":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":2.0},"157":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":3.0},"162":{"tf":2.23606797749979},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"21":{"tf":4.123105625617661},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"27":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":3.1622776601683795},"45":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"84":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979},"93":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"43":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"21":{"tf":1.0},"25":{"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.0},"124":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"144":{"tf":1.0},"166":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"164":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"103":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":40,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":2.0},"17":{"tf":1.0},"173":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"171":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":3.3166247903554}}}}},"l":{"d":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"142":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":4,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"174":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"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":15,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}}}}},"x":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"y":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"119":{"tf":1.0},"49":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"181":{"tf":1.0}}}}}}},"d":{"d":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":4,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"97":{"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":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"133":{"tf":1.0}}}}}}},"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0}}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"107":{"tf":1.0},"142":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"36":{"tf":1.0},"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"136":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"96":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"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":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"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":1,"docs":{"117":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"185":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"153":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"103":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"56":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"122":{"tf":1.0},"42":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"119":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":10,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":5,"docs":{"56":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"152":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"180":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"155":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"105":{"tf":1.0},"122":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.0},"146":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"139":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"4":{"df":3,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"122":{"tf":1.0},"42":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"156":{"tf":1.0},"40":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"48":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":4,"docs":{"114":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}},"5":{"df":2,"docs":{"168":{"tf":1.0},"179":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"7":{"df":2,"docs":{"182":{"tf":1.0},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"140":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":20,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"42":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file +Object.assign(window.search, {"doc_urls":["introduction.html#why-relm4","introduction.html#requirements","introduction.html#issues-and-feedback","introduction.html#platform-support","introduction.html#examples","introduction.html#screenshots","introduction.html#special-thanks","basic_concepts/index.html#basic-concepts","basic_concepts/model.html#model","basic_concepts/messages.html#messages","basic_concepts/messages/input.html#input-messages","basic_concepts/messages/output.html#output-messages","basic_concepts/widgets.html#widgets","basic_concepts/components.html#components","basic_concepts/components.html#the-component-trait","basic_concepts/components.html#the-simplecomponent-trait","first_app.html#your-first-app","first_app.html#application-architecture","first_app.html#messages","first_app.html#the-model","first_app.html#the-widgets","first_app.html#implement-a-component-with-simplecomponent","first_app.html#running-the-app","first_app.html#summary","first_app.html#conclusion","first_app.html#the-complete-code","component_macro.html#the-component-macro","component_macro.html#whats-different","component_macro.html#properties","component_macro.html#widgets","component_macro.html#events","component_macro.html#ui-updates","component_macro.html#constructing-the-widgets","component_macro.html#the-complete-code","tricks.html#tips-and-tricks","tricks.html#advanced-view-macro-features","tricks.html#common-pitfalls","tricks.html#message-recursion","tricks.html#sending-errors","tricks.html#common-compiler-errors","tricks.html#private-type-in-public-interface","tricks.html#method-container_add-is-missing","tricks.html#working-with-gtk-rs","tricks.html#reading-docs","tricks.html#using-the-inspector","tricks.html#demo-applications","tricks.html#our-ecosystem","tricks.html#guaranteed-helpful-our-matrix-chat","efficient_ui/index.html#efficient-ui-updates","efficient_ui/tracker.html#tracker","efficient_ui/tracker.html#the-tracker-crate","efficient_ui/tracker.html#a-tracker-example","efficient_ui/tracker.html#using-trackers-in-relm4-apps","efficient_ui/tracker.html#the-icons","efficient_ui/tracker.html#the-model","efficient_ui/tracker.html#the-view","efficient_ui/tracker.html#the-main-function","efficient_ui/tracker.html#the-track-attribute","efficient_ui/tracker.html#initializing-the-model","efficient_ui/tracker.html#the-complete-code","efficient_ui/factory.html#factory","efficient_ui/factory.html#factories-in-relm4","efficient_ui/factory.html#the-model","efficient_ui/factory.html#the-input-message-type","efficient_ui/factory.html#the-output-message-type","efficient_ui/factory.html#the-factory-implementation","efficient_ui/factory.html#creating-the-widget","efficient_ui/factory.html#initializing-the-model","efficient_ui/factory.html#the-main-component","efficient_ui/factory.html#the-component-types","efficient_ui/factory.html#initializing-the-factory","efficient_ui/factory.html#initializing-the-widgets","efficient_ui/factory.html#the-main-update-function","efficient_ui/factory.html#the-main-function","efficient_ui/factory.html#the-complete-code","efficient_ui/factory_position.html#the-position-function","efficient_ui/factory_position.html#how-it-works","efficient_ui/factory_position.html#a-chess-grid","components.html#components","components.html#when-to-use-components","components.html#message-handling","components.html#example-application","components.html#the-header-bar","components.html#the-model","components.html#the-widgets","components.html#the-close-alert","components.html#the-model-1","components.html#the-widgets-1","components.html#the-main-app","components.html#the-model-2","components.html#controllers","components.html#the-widgets-2","components.html#conclusion","components.html#the-complete-code","threads_and_async/index.html#introduction","threads_and_async/index.html#understanding-the-problem","threads_and_async/index.html#cpu-bound-and-other-synchronous-operations","threads_and_async/index.html#io-bound-and-other-async-operations","threads_and_async/worker.html#workers","threads_and_async/worker.html#implementing-a-worker","threads_and_async/commands.html#commands","threads_and_async/commands.html#synchronous-tasks","threads_and_async/commands.html#configuration","threads_and_async/async.html#async-components-and-factories","threads_and_async/async.html#the-complete-code","threads_and_async/overview.html#overview","threads_and_async/overview.html#summary","child_components.html#child-components","child_components.html#the-alert-component","child_components.html#usage","child_components.html#the-complete-code","widget_templates/index.html#widget-templates","widget_templates/index.html#defining-templates","widget_templates/index.html#template-children","widget_templates/index.html#using-templates","widget_templates/index.html#some-notes-on-orders","widget_templates/index.html#the-complete-code","widget_templates/accessing_nested_template_elements.html#accessing-nested-template-elements","widget_templates/accessing_nested_template_elements.html#the-complete-code","cli.html#command-line-interfaces","cli.html#result","cli.html#the-complete-code","gtk_rs.html#gtk-rs-overview","gtk_rs.html#gobjects","gtk_rs.html#subclassing","gtk_rs.html#properties","gtk_rs.html#signals","gtk_rs.html#settings","gtk_rs.html#lists","gtk_rs.html#composite-templates","resource_bundles.html#resource-bundles","resource_bundles.html#cargo","resource_bundles.html#data-directory","resource_bundles.html#cargotoml","resource_bundles.html#buildrs","resource_bundles.html#mainrs","continuous_integration.html#continuous-integration","continuous_integration.html#github-actions","component_macro/reference.html#the-component-macro-reference","component_macro/reference.html#public-widgets","component_macro/reference.html#the-view-macro","component_macro/reference.html#constructing-widgets","component_macro/reference.html#child-widgets","component_macro/reference.html#naming-widgets","component_macro/reference.html#conditional-widgets","component_macro/reference.html#returned-widgets","component_macro/reference.html#properties","component_macro/reference.html#trait-disambiguation","component_macro/reference.html#signals","component_macro/reference.html#blocking-signals-temporarily","component_macro/reference.html#manual-code","component_macro/reference.html#add-more-fields-to-your-widgets","component_macro/reference.html#manual-view","component_macro/expansion.html#macro-expansion","component_macro/expansion.html#the-boilerplate","component_macro/expansion.html#the-model","component_macro/expansion.html#the-message-type","component_macro/expansion.html#the-macro","component_macro/expansion.html#the-expansion","component_macro/expansion.html#the-widgets-struct","component_macro/expansion.html#the-simplecomponent-trait-implementation","component_macro/expansion.html#conclusion","component_macro/expansion.html#the-whole-macro-expansion","migrations/index.html#migration-guides","migrations/0_2_to_0_4.html#migration-from-v02-to-v04","migrations/0_2_to_0_4.html#factoryprototype","migrations/0_2_to_0_4.html#widget-macro","migrations/0_2_to_0_4.html#components","migrations/0_4_to_0_5.html#migration-from-v04-to-v05","migrations/0_4_to_0_5.html#components","migrations/0_4_to_0_5.html#senders-and-messages","migrations/0_4_to_0_5.html#initializing-components","migrations/0_4_to_0_5.html#helper-traits","migrations/0_4_to_0_5.html#factories","migrations/0_4_to_0_5.html#the-view-macro","migrations/0_4_to_0_5.html#the-widget-macro","migrations/0_4_to_0_5.html#relmapp","migrations/0_4_to_0_5.html#miscellaneous","migrations/0_4_to_0_5.html#summary","migrations/0_5_to_0_6.html#migration-from-v05-to-v06","migrations/0_5_to_0_6.html#renamed-methods","migrations/0_5_to_0_6.html#actions","migrations/0_6_to_0_7.html#migration-from-v06-to-v07","migrations/0_6_to_0_7.html#component-changes","migrations/0_6_to_0_7.html#factory-changes","migrations/0_6_to_0_7.html#example","migrations/0_6_to_0_7.html#other-changes","migrations/0_7_to_0_8.html#migration-from-v07-to-v08"],"index":{"documentStore":{"docInfo":{"0":{"body":57,"breadcrumbs":2,"title":1},"1":{"body":59,"breadcrumbs":2,"title":1},"10":{"body":55,"breadcrumbs":6,"title":2},"100":{"body":170,"breadcrumbs":4,"title":1},"101":{"body":58,"breadcrumbs":5,"title":2},"102":{"body":57,"breadcrumbs":4,"title":1},"103":{"body":300,"breadcrumbs":8,"title":3},"104":{"body":139,"breadcrumbs":7,"title":2},"105":{"body":32,"breadcrumbs":4,"title":1},"106":{"body":59,"breadcrumbs":4,"title":1},"107":{"body":72,"breadcrumbs":4,"title":2},"108":{"body":338,"breadcrumbs":4,"title":2},"109":{"body":392,"breadcrumbs":3,"title":1},"11":{"body":60,"breadcrumbs":6,"title":2},"110":{"body":458,"breadcrumbs":4,"title":2},"111":{"body":55,"breadcrumbs":4,"title":2},"112":{"body":72,"breadcrumbs":4,"title":2},"113":{"body":97,"breadcrumbs":4,"title":2},"114":{"body":98,"breadcrumbs":4,"title":2},"115":{"body":65,"breadcrumbs":4,"title":2},"116":{"body":159,"breadcrumbs":4,"title":2},"117":{"body":155,"breadcrumbs":10,"title":4},"118":{"body":178,"breadcrumbs":8,"title":2},"119":{"body":139,"breadcrumbs":6,"title":3},"12":{"body":66,"breadcrumbs":4,"title":1},"120":{"body":155,"breadcrumbs":4,"title":1},"121":{"body":98,"breadcrumbs":5,"title":2},"122":{"body":29,"breadcrumbs":6,"title":3},"123":{"body":16,"breadcrumbs":4,"title":1},"124":{"body":39,"breadcrumbs":4,"title":1},"125":{"body":45,"breadcrumbs":4,"title":1},"126":{"body":37,"breadcrumbs":4,"title":1},"127":{"body":23,"breadcrumbs":4,"title":1},"128":{"body":30,"breadcrumbs":4,"title":1},"129":{"body":29,"breadcrumbs":5,"title":2},"13":{"body":11,"breadcrumbs":4,"title":1},"130":{"body":28,"breadcrumbs":4,"title":2},"131":{"body":15,"breadcrumbs":3,"title":1},"132":{"body":55,"breadcrumbs":4,"title":2},"133":{"body":33,"breadcrumbs":3,"title":1},"134":{"body":16,"breadcrumbs":3,"title":1},"135":{"body":43,"breadcrumbs":3,"title":1},"136":{"body":13,"breadcrumbs":5,"title":2},"137":{"body":98,"breadcrumbs":5,"title":2},"138":{"body":40,"breadcrumbs":6,"title":3},"139":{"body":14,"breadcrumbs":5,"title":2},"14":{"body":12,"breadcrumbs":5,"title":2},"140":{"body":8,"breadcrumbs":5,"title":2},"141":{"body":64,"breadcrumbs":5,"title":2},"142":{"body":77,"breadcrumbs":5,"title":2},"143":{"body":25,"breadcrumbs":5,"title":2},"144":{"body":142,"breadcrumbs":5,"title":2},"145":{"body":100,"breadcrumbs":5,"title":2},"146":{"body":117,"breadcrumbs":4,"title":1},"147":{"body":38,"breadcrumbs":5,"title":2},"148":{"body":43,"breadcrumbs":4,"title":1},"149":{"body":54,"breadcrumbs":6,"title":3},"15":{"body":34,"breadcrumbs":5,"title":2},"150":{"body":26,"breadcrumbs":5,"title":2},"151":{"body":24,"breadcrumbs":7,"title":4},"152":{"body":33,"breadcrumbs":5,"title":2},"153":{"body":25,"breadcrumbs":7,"title":2},"154":{"body":8,"breadcrumbs":6,"title":1},"155":{"body":9,"breadcrumbs":6,"title":1},"156":{"body":15,"breadcrumbs":7,"title":2},"157":{"body":275,"breadcrumbs":6,"title":1},"158":{"body":8,"breadcrumbs":6,"title":1},"159":{"body":114,"breadcrumbs":7,"title":2},"16":{"body":53,"breadcrumbs":4,"title":2},"160":{"body":615,"breadcrumbs":8,"title":3},"161":{"body":16,"breadcrumbs":6,"title":1},"162":{"body":797,"breadcrumbs":8,"title":3},"163":{"body":9,"breadcrumbs":4,"title":2},"164":{"body":30,"breadcrumbs":7,"title":3},"165":{"body":14,"breadcrumbs":5,"title":1},"166":{"body":30,"breadcrumbs":6,"title":2},"167":{"body":71,"breadcrumbs":5,"title":1},"168":{"body":18,"breadcrumbs":7,"title":3},"169":{"body":109,"breadcrumbs":5,"title":1},"17":{"body":38,"breadcrumbs":4,"title":2},"170":{"body":58,"breadcrumbs":6,"title":2},"171":{"body":60,"breadcrumbs":6,"title":2},"172":{"body":39,"breadcrumbs":6,"title":2},"173":{"body":43,"breadcrumbs":5,"title":1},"174":{"body":73,"breadcrumbs":6,"title":2},"175":{"body":21,"breadcrumbs":6,"title":2},"176":{"body":10,"breadcrumbs":5,"title":1},"177":{"body":7,"breadcrumbs":5,"title":1},"178":{"body":53,"breadcrumbs":5,"title":1},"179":{"body":0,"breadcrumbs":7,"title":3},"18":{"body":11,"breadcrumbs":3,"title":1},"180":{"body":2,"breadcrumbs":6,"title":2},"181":{"body":9,"breadcrumbs":5,"title":1},"182":{"body":0,"breadcrumbs":7,"title":3},"183":{"body":36,"breadcrumbs":6,"title":2},"184":{"body":14,"breadcrumbs":6,"title":2},"185":{"body":62,"breadcrumbs":5,"title":1},"186":{"body":16,"breadcrumbs":5,"title":1},"187":{"body":29,"breadcrumbs":7,"title":3},"19":{"body":13,"breadcrumbs":3,"title":1},"2":{"body":17,"breadcrumbs":3,"title":2},"20":{"body":62,"breadcrumbs":3,"title":1},"21":{"body":333,"breadcrumbs":5,"title":3},"22":{"body":20,"breadcrumbs":4,"title":2},"23":{"body":77,"breadcrumbs":3,"title":1},"24":{"body":59,"breadcrumbs":3,"title":1},"25":{"body":171,"breadcrumbs":4,"title":2},"26":{"body":38,"breadcrumbs":4,"title":2},"27":{"body":152,"breadcrumbs":4,"title":2},"28":{"body":26,"breadcrumbs":3,"title":1},"29":{"body":36,"breadcrumbs":3,"title":1},"3":{"body":9,"breadcrumbs":3,"title":2},"30":{"body":65,"breadcrumbs":3,"title":1},"31":{"body":34,"breadcrumbs":4,"title":2},"32":{"body":21,"breadcrumbs":4,"title":2},"33":{"body":120,"breadcrumbs":4,"title":2},"34":{"body":43,"breadcrumbs":4,"title":2},"35":{"body":47,"breadcrumbs":6,"title":4},"36":{"body":13,"breadcrumbs":4,"title":2},"37":{"body":35,"breadcrumbs":4,"title":2},"38":{"body":54,"breadcrumbs":4,"title":2},"39":{"body":26,"breadcrumbs":5,"title":3},"4":{"body":44,"breadcrumbs":2,"title":1},"40":{"body":27,"breadcrumbs":6,"title":4},"41":{"body":84,"breadcrumbs":5,"title":3},"42":{"body":29,"breadcrumbs":5,"title":3},"43":{"body":47,"breadcrumbs":4,"title":2},"44":{"body":98,"breadcrumbs":4,"title":2},"45":{"body":53,"breadcrumbs":4,"title":2},"46":{"body":34,"breadcrumbs":3,"title":1},"47":{"body":26,"breadcrumbs":6,"title":4},"48":{"body":115,"breadcrumbs":6,"title":3},"49":{"body":80,"breadcrumbs":5,"title":1},"5":{"body":21,"breadcrumbs":2,"title":1},"50":{"body":59,"breadcrumbs":6,"title":2},"51":{"body":74,"breadcrumbs":6,"title":2},"52":{"body":39,"breadcrumbs":8,"title":4},"53":{"body":58,"breadcrumbs":5,"title":1},"54":{"body":89,"breadcrumbs":5,"title":1},"55":{"body":73,"breadcrumbs":5,"title":1},"56":{"body":35,"breadcrumbs":6,"title":2},"57":{"body":122,"breadcrumbs":6,"title":2},"58":{"body":36,"breadcrumbs":6,"title":2},"59":{"body":218,"breadcrumbs":6,"title":2},"6":{"body":39,"breadcrumbs":3,"title":2},"60":{"body":30,"breadcrumbs":5,"title":1},"61":{"body":70,"breadcrumbs":6,"title":2},"62":{"body":18,"breadcrumbs":5,"title":1},"63":{"body":9,"breadcrumbs":7,"title":3},"64":{"body":80,"breadcrumbs":7,"title":3},"65":{"body":80,"breadcrumbs":6,"title":2},"66":{"body":67,"breadcrumbs":6,"title":2},"67":{"body":32,"breadcrumbs":6,"title":2},"68":{"body":13,"breadcrumbs":6,"title":2},"69":{"body":41,"breadcrumbs":6,"title":2},"7":{"body":28,"breadcrumbs":4,"title":2},"70":{"body":96,"breadcrumbs":6,"title":2},"71":{"body":65,"breadcrumbs":6,"title":2},"72":{"body":106,"breadcrumbs":7,"title":3},"73":{"body":13,"breadcrumbs":6,"title":2},"74":{"body":279,"breadcrumbs":6,"title":2},"75":{"body":62,"breadcrumbs":7,"title":2},"76":{"body":96,"breadcrumbs":6,"title":1},"77":{"body":77,"breadcrumbs":7,"title":2},"78":{"body":72,"breadcrumbs":2,"title":1},"79":{"body":15,"breadcrumbs":3,"title":2},"8":{"body":32,"breadcrumbs":4,"title":1},"80":{"body":79,"breadcrumbs":3,"title":2},"81":{"body":31,"breadcrumbs":3,"title":2},"82":{"body":40,"breadcrumbs":3,"title":2},"83":{"body":55,"breadcrumbs":2,"title":1},"84":{"body":69,"breadcrumbs":2,"title":1},"85":{"body":19,"breadcrumbs":3,"title":2},"86":{"body":49,"breadcrumbs":2,"title":1},"87":{"body":108,"breadcrumbs":2,"title":1},"88":{"body":7,"breadcrumbs":3,"title":2},"89":{"body":102,"breadcrumbs":2,"title":1},"9":{"body":39,"breadcrumbs":4,"title":1},"90":{"body":160,"breadcrumbs":2,"title":1},"91":{"body":42,"breadcrumbs":2,"title":1},"92":{"body":42,"breadcrumbs":2,"title":1},"93":{"body":310,"breadcrumbs":3,"title":2},"94":{"body":104,"breadcrumbs":3,"title":1},"95":{"body":37,"breadcrumbs":4,"title":2},"96":{"body":84,"breadcrumbs":6,"title":4},"97":{"body":65,"breadcrumbs":6,"title":4},"98":{"body":26,"breadcrumbs":4,"title":1},"99":{"body":120,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"Matrix Relm4 on crates.io Relm4 docs Relm4 is an idiomatic GUI library inspired by Elm and based on gtk4-rs . It is a new version of relm that's built from scratch and is compatible with GTK4 and libadwaita . We believe that GUI development should be easy, productive and delightful. The gtk4-rs crate already provides everything you need to write modern, beautiful and cross-platform applications. Built on top of this foundation, Relm4 makes developing more idiomatic, simpler and faster and enables you to become productive in just a few hours.","breadcrumbs":"Introduction » Why Relm4","id":"0","title":"Why Relm4"},"1":{"body":"To work with Relm4, you should understand most basic language features of the Rust programming language. We recommend to at least be familiar with the content of the chapters 1, 3-6, 8, 10 and 13 of the Rust book . I also recommend reading the gtk4-rs book for getting more insight into development with gtk4-rs. Yet, knowledge of GTK4 or gtk4-rs is not required in this book. Helpful links: How to install GTK4 for Rust gtk4-rs book gtk4-rs docs Cargo: Add the packages you need to your Cargo.toml: relm4 = \"0.9.1\"\nrelm4-components = \"0.9.1\"","breadcrumbs":"Introduction » Requirements","id":"1","title":"Requirements"},"10":{"body":"Input messages are a way for our components to receive information, think of them as our inbox 📬. Let's look at it with a simple MailboxComponent example: We have our Inbox, capable of receiving emails from other people. enum Inbox { GetEmail(Email),\n} These messages are received by our component and handled in the update function. fn update(&mut self, message: Self::Input, ...) { match message { Inbox::GetEmail(email) => self.emails.push(email) }\n} Our MailboxComponent can not only receive emails from other people, but we can also send emails to ourselves. Components work in the same way, they can either receive messages from other components or send themselves messages to update their own model.","breadcrumbs":"Basic concepts » Messages » Input » Input messages","id":"10","title":"Input messages"},"100":{"body":"In this chapter, we'll have a look at commands, which are a simple yet extremely powerful mechanism to offload both CPU-bound and I/O-bound tasks to a separate runtime. Commands are background tasks that can be spawned using a ComponentSender or FactorySender. They run until they return their result as a CommandOutput message that will be processed by the component. First, we define our message type so we can use it for the associated CommandOutput type in our component. #[derive(Debug)]\nenum CommandMsg { Data(RemoteData),\n} impl Component for CommandModel { type CommandOutput = CommandMsg; Note: This only works with the Component trait. The simplified SimpleComponent trait doesn't support commands. In our update function, we start a new command using the oneshot_command() method. This method allows us to spawn a future that will yield exactly one CommandOutput message at completion. From the command, we call an asynchronous function that will handle the web request for us. Once the future completes, the command returns a CommandMsg. fn update(&mut self, msg: Self::Input, sender: ComponentSender, _: &Self::Root) { match msg { CommandModelMsg::FetchData => { sender.oneshot_command(async { // Run async background task CommandMsg::Data(fetch_data().await) }); } } } Now, we can process the CommandMsg similar to regular app updates. The method we use is called update_cmd() and is very similar to the regular update() function. Only the message type is CommandOutput instead of Input. From here, we can simply assign the result of the web request to our model. fn update_cmd( &mut self, message: Self::CommandOutput, _sender: ComponentSender, _: &Self::Root, ) { match message { CommandMsg::Data(data) => self.remote_data = data, } } That's it! It's really as simple as starting a task and processing a message on completion. With the command() method, you are even more flexible because you can send multiple messages.","breadcrumbs":"Threads and async » Commands » Commands","id":"100","title":"Commands"},"101":{"body":"You can use commands for synchronous operations, too. Compared to the asynchronous methods, we need to add the spawn_ prefix to the method name to get the synchronous version. Then, you can just pass a closure or a function pointer as task. fn update(&mut self, msg: Self::Input, sender: ComponentSender, _: &Self::Root) { match msg { CommandModelMsg::FetchData => { sender.spawn_oneshot_command(|| { // Run CPU-bound background task CommandMsg::Data(compute_result()) }); } } } The rest is identical to the asynchronous version. fn update_cmd( &mut self, message: Self::CommandOutput, _sender: ComponentSender, _: &Self::Root, ) { match message { CommandMsg::Data(data) => self.remote_data = data, } }","breadcrumbs":"Threads and async » Commands » Synchronous tasks","id":"101","title":"Synchronous tasks"},"102":{"body":"Commands run on a tokio runtime. If you spawn a lot of commands in your application or want to fine-tune the runtime, you can set two static variables at the start of your main function to override the default value. For example, Relm4 only uses one thread for asynchronous background tasks, which might not be enough. Setting RELM_THREADS to 4 will increase the thread count by 3 additional threads. Note: Setting the static variables must be done early. As soon as the runtime is initialized (which happens when it's accessed for the first time), the values cannot be changed anymore.","breadcrumbs":"Threads and async » Commands » Configuration","id":"102","title":"Configuration"},"103":{"body":"Asynchronous components and factories are almost identical compared to regular components and factories. The only major difference is that they have asynchronous init, update and update_cmd methods. This allows you to await almost everywhere from within the component. The app we will write in this chapter is also available here . Run cargo run --example simple_async from the example directory if you want to see the code in action. Because Rust doesn't support async traits yet, we need macros to add support for this feature. To tell the component macro that we're using an async trait, we pass the async parameter to it. The component macro will then utilize the async_trait crate behind the scenes to make everything work. Also, we need to use AsyncComponent instead of Component as trait. Apart from that, the first section is identical. Similarly, the factory macro needs the async parameter for async factories and the trait changes from FactoryComponent to AsyncFactoryComponent. #[relm4::component(async)]\nimpl AsyncComponent for App { type Init = u8; type Input = Msg; type Output = (); type CommandOutput = (); Most functions of async component and factory traits are asynchronous, which allows us to await on futures within those functions. Apart from that, only a couple of types need to be adjusted for the async versions of the traits, for example AsyncComponentSender and AsyncComponentParts. async fn init( counter: Self::Init, root: Self::Root, sender: AsyncComponentSender, ) -> AsyncComponentParts { tokio::time::sleep(Duration::from_secs(1)).await; let model = App { counter }; // Insert the code generation of the view! macro here let widgets = view_output!(); AsyncComponentParts { model, widgets } } Awaiting in the init function allows us to perform a late initialization. Depending on how you implement the init function, it might take a long time to complete. Not showing anything in this case can look very odd. Therefore, Relm4 allows you to specify widgets that will be displayed while your async component is initialized. If your init function doesn't await or completes quickly, you don't need to implement init_loading_widgets. fn init_loading_widgets(root: Self::Root) -> Option { view! { #[local] root { set_title: Some(\"Simple app\"), set_default_size: (300, 100), // This will be removed automatically by // LoadingWidgets when the full view has loaded #[name(spinner)] gtk::Spinner { start: (), set_halign: gtk::Align::Center, } } } Some(LoadingWidgets::new(root, spinner)) } In this case, we do some basic initialization of our root widget upfront and also add a Spinner for a nice loading animation. As soon as the init function returns, the temporary spinner will be removed automatically and the widgets from the view! macro will be inserted instead. Finally, the update function completes the trait implementation. Notably, awaiting slow futures will block the processing of further messages. In other words, the update function can only process one message afters the other. Because we use async however, this only affects each async component individually and all other components won't be affected. If you want to process multiple messages at the same time, you should consider using commands. async fn update( &mut self, msg: Self::Input, _sender: AsyncComponentSender, _root: &Self::Root, ) { tokio::time::sleep(Duration::from_secs(1)).await; match msg { Msg::Increment => { self.counter = self.counter.wrapping_add(1); } Msg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }","breadcrumbs":"Threads and async » Async components and factories » Async components and factories","id":"103","title":"Async components and factories"},"104":{"body":"use std::time::Duration; use gtk::prelude::*;\nuse relm4::{ component::{AsyncComponent, AsyncComponentParts, AsyncComponentSender}, gtk, loading_widgets::LoadingWidgets, view, RelmApp, RelmWidgetExt,\n}; struct App { counter: u8,\n} #[derive(Debug)]\nenum Msg { Increment, Decrement,\n} #[relm4::component(async)]\nimpl AsyncComponent for App { type Init = u8; type Input = Msg; type Output = (); type CommandOutput = (); view! { gtk::Window { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => Msg::Increment, }, gtk::Button { set_label: \"Decrement\", connect_clicked => Msg::Decrement, }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } fn init_loading_widgets(root: Self::Root) -> Option { view! { #[local] root { set_title: Some(\"Simple app\"), set_default_size: (300, 100), // This will be removed automatically by // LoadingWidgets when the full view has loaded #[name(spinner)] gtk::Spinner { start: (), set_halign: gtk::Align::Center, } } } Some(LoadingWidgets::new(root, spinner)) } async fn init( counter: Self::Init, root: Self::Root, sender: AsyncComponentSender, ) -> AsyncComponentParts { tokio::time::sleep(Duration::from_secs(1)).await; let model = App { counter }; // Insert the code generation of the view! macro here let widgets = view_output!(); AsyncComponentParts { model, widgets } } async fn update( &mut self, msg: Self::Input, _sender: AsyncComponentSender, _root: &Self::Root, ) { tokio::time::sleep(Duration::from_secs(1)).await; match msg { Msg::Increment => { self.counter = self.counter.wrapping_add(1); } Msg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.simple_async\"); app.run_async::(0);\n}","breadcrumbs":"Threads and async » Async components and factories » The complete code","id":"104","title":"The complete code"},"105":{"body":"Option Synchronous Async Non-blocking !Send Workers ✅ ❌ ❌ ❌ Async components and factories ❌ ✅ ❌ ✅ Commands ✅ ✅ ✅ ❌ In this context, non-blocking means you can have run multiple instances at the same time. !Send means that the types involved don't need to implement Send so you can use widgets or Rc for example.","breadcrumbs":"Threads and async » Overview » Overview","id":"105","title":"Overview"},"106":{"body":"Async components and factories: Run asynchronous tasks on the main runtime Allow other components to keep running while awaiting futures Await during initialization or updates Commands: Run tasks on a runtime in the background Supports both synchronous and asynchronous tasks Run several tasks in parallel Drop tasks as soon as the component is destroyed Workers: Handle IO-bound or CPU-intensive tasks one at the time on a different thread The update function should be executed in another thread You need a model to store state for processing messages","breadcrumbs":"Threads and async » Overview » Summary","id":"106","title":"Summary"},"107":{"body":"In this chapter, we will implement a simple alert dialog as a reusable child component. The alert example in the Relm4 repository implements a simple app for the alert component that we will write in this chapter. It's an other variant of a counter app, yet this time a dialog will be displayed if the counter does not match 42 when closing. The main difference in the implementation is, that the dialog is implemented as component that can be reused in other applications. App screenshot dark This is how the dialog looks like in the alert example: App screenshot dark If you want to see an alert component very similar to the one we will write in this chapter, have a look at the “alert” example . Run cargo run --example alert from the relm4-components/examples directory if you want to see the code in action.","breadcrumbs":"Child components » Child components","id":"107","title":"Child components"},"108":{"body":"The alert component is defined similar to the other components we've implemented in this book. Our model stores whether the component is visible and the configuration. /// Alert dialog component.\npub struct Alert { settings: AlertSettings, is_active: bool,\n} We define a Widgets, Init, Input and Output type as usual. type Widgets = AlertWidgets; type Init = AlertSettings; type Input = AlertMsg; type Output = AlertResponse; The Init param is a settings object that is used to configure the component. This maximizes the reusability of the component by letting it adapt to different use-cases. /// Configuration for the alert dialog component\npub struct AlertSettings { /// Large text pub text: String, /// Optional secondary, smaller text pub secondary_text: Option, /// Modal dialogs freeze other windows as long they are visible pub is_modal: bool, /// Sets color of the accept button to red if the theme supports it pub destructive_accept: bool, /// Text for confirm button pub confirm_label: String, /// Text for cancel button pub cancel_label: String, /// Text for third option button. If [`None`] the third button won't be created. pub option_label: Option,\n} In the Input type, this component uses #[doc(hidden)] on the Response variant. This is a useful pattern for component-internal messages that are not intended to be sent by outside callers. This allows us to update the component when the underlying dialog reports a response, but not display the Response variant in the component's documentation. /// Messages that can be sent to the alert dialog component\n#[derive(Debug)]\npub enum AlertMsg { /// Message sent by the parent to view the dialog Show, #[doc(hidden)] Response(gtk::ResponseType),\n} The Output type allows us to report the user's response back to a parent component. /// User action performed on the alert dialog.\n#[derive(Debug)]\npub enum AlertResponse { /// User clicked confirm button. Confirm, /// User clicked cancel button. Cancel, /// User clicked user-supplied option. Option,\n} The update function handles the Show message from our parent component and the Response messages generated by user interactions. It also sends the appropriate messages to the parent through the output sender. fn update(&mut self, input: AlertMsg, sender: ComponentSender) { match input { AlertMsg::Show => { self.is_active = true; } AlertMsg::Response(ty) => { self.is_active = false; sender .output(match ty { gtk::ResponseType::Accept => AlertResponse::Confirm, gtk::ResponseType::Other(_) => AlertResponse::Option, _ => AlertResponse::Cancel, }) .unwrap(); } } } When initializing the model, we conditionally set up some widgets based on the settings passed by the caller. We set is_active to false since the dialog is not currently displayed. fn init( settings: AlertSettings, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Alert { settings, is_active: false, }; let widgets = view_output!(); if let Some(option_label) = &model.settings.option_label { widgets .dialog .add_button(option_label, gtk::ResponseType::Other(0)); } if model.settings.destructive_accept { let accept_widget = widgets .dialog .widget_for_response(gtk::ResponseType::Accept) .expect(\"No button for accept response set\"); accept_widget.add_css_class(\"destructive-action\"); } ComponentParts { model, widgets } } Lastly, the view. Note that the component connects to the response signal of the underlying dialog and sends an input to itself when a response is received. view! { #[name = \"dialog\"] gtk::MessageDialog { set_message_type: gtk::MessageType::Question, #[watch] set_visible: model.is_active, connect_response[sender] => move |_, response| { sender.input(AlertMsg::Response(response)); }, // Apply configuration set_text: Some(&model.settings.text), set_secondary_text: model.settings.secondary_text.as_deref(), set_modal: model.settings.is_modal, add_button: (&model.settings.confirm_label, gtk::ResponseType::Accept), add_button: (&model.settings.cancel_label, gtk::ResponseType::Cancel), } }","breadcrumbs":"Child components » The alert component","id":"108","title":"The alert component"},"109":{"body":"With the component complete, let's use it! struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement, CloseRequest, Save, Close, Ignore,\n} #[relm4::component]\nimpl SimpleComponent for App { type Input = AppMsg; type Output = (); type Init = (); view! { main_window = gtk::ApplicationWindow { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop }, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, append = >k::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, append = >k::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, append = >k::Label { set_margin_all: 5, #[watch] set_label: &format!(\"Counter: {}\", model.counter), }, append = >k::Button { set_label: \"Close\", connect_clicked[sender] => move |_| { sender.input(AppMsg::CloseRequest); }, }, }, } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } AppMsg::Save => { println!(\"* Open save dialog here *\"); } AppMsg::Close => { relm4::main_application().quit(); } AppMsg::Ignore => (), } } fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } }\n} fn convert_alert_response(response: AlertResponse) -> AppMsg { match response { AlertResponse::Confirm => AppMsg::Close, AlertResponse::Cancel => AppMsg::Ignore, AlertResponse::Option => AppMsg::Save, }\n} fn main() { let app = RelmApp::new(\"relm4.example.alert\"); app.run::(());\n} This is mostly stuff that we've already done in previous chapters, but there are a few additional things to know about interacting with child components. Notably, we need to wrap the types of the child components in Controllers to be able to store them in the App model. struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} We initialize them with the builder pattern in the init method. fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } } We call transient_for(root) on the builder to indicate to GTK that our root widget is transient for the main application window. This allows window managers to handle the dialog window differently, e.g. by drawing it on top of other windows. See the set_transient_for documentation for more information. AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } That's it! You can find more examples of reusable components in the relm4-components crate here . You can also contribute your own reusable components to relm4-components :)","breadcrumbs":"Child components » Usage","id":"109","title":"Usage"},"11":{"body":"Output messages are sent by components to other components and handled differently depending on the type of components that receives them. We can think of them as our outbox 🚚. Let's take our previous MailboxComponent example and add the following. enum Outbox { SendEmail(Email),\n} We can modify our previous example for forward the emails to somebody else. fn update(&mut self, message: Self::Input, sender: ComponentSender) { match message { Inbox::GetEmail(email) => sender.output(Outbox::SendEmail(email)), }\n} Usually, output messages are handled by the parent component, which is the component that creates and stores our MailboxComponent. You can think of it like a tree with one component at the root and many child components that branch out.","breadcrumbs":"Basic concepts » Messages » Output » Output messages","id":"11","title":"Output messages"},"110":{"body":"Let’s review all our code in one piece one more time to see how all these parts work together: use gtk::prelude::*;\nuse relm4::prelude::*;\nuse relm4::Controller; /// Configuration for the alert dialog component\npub struct AlertSettings { /// Large text pub text: String, /// Optional secondary, smaller text pub secondary_text: Option, /// Modal dialogs freeze other windows as long they are visible pub is_modal: bool, /// Sets color of the accept button to red if the theme supports it pub destructive_accept: bool, /// Text for confirm button pub confirm_label: String, /// Text for cancel button pub cancel_label: String, /// Text for third option button. If [`None`] the third button won't be created. pub option_label: Option,\n} /// Alert dialog component.\npub struct Alert { settings: AlertSettings, is_active: bool,\n} /// Messages that can be sent to the alert dialog component\n#[derive(Debug)]\npub enum AlertMsg { /// Message sent by the parent to view the dialog Show, #[doc(hidden)] Response(gtk::ResponseType),\n} /// User action performed on the alert dialog.\n#[derive(Debug)]\npub enum AlertResponse { /// User clicked confirm button. Confirm, /// User clicked cancel button. Cancel, /// User clicked user-supplied option. Option,\n} /// Widgets of the alert dialog component.\n#[relm4::component(pub)]\nimpl SimpleComponent for Alert { type Widgets = AlertWidgets; type Init = AlertSettings; type Input = AlertMsg; type Output = AlertResponse; view! { #[name = \"dialog\"] gtk::MessageDialog { set_message_type: gtk::MessageType::Question, #[watch] set_visible: model.is_active, connect_response[sender] => move |_, response| { sender.input(AlertMsg::Response(response)); }, // Apply configuration set_text: Some(&model.settings.text), set_secondary_text: model.settings.secondary_text.as_deref(), set_modal: model.settings.is_modal, add_button: (&model.settings.confirm_label, gtk::ResponseType::Accept), add_button: (&model.settings.cancel_label, gtk::ResponseType::Cancel), } } fn init( settings: AlertSettings, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Alert { settings, is_active: false, }; let widgets = view_output!(); if let Some(option_label) = &model.settings.option_label { widgets .dialog .add_button(option_label, gtk::ResponseType::Other(0)); } if model.settings.destructive_accept { let accept_widget = widgets .dialog .widget_for_response(gtk::ResponseType::Accept) .expect(\"No button for accept response set\"); accept_widget.add_css_class(\"destructive-action\"); } ComponentParts { model, widgets } } fn update(&mut self, input: AlertMsg, sender: ComponentSender) { match input { AlertMsg::Show => { self.is_active = true; } AlertMsg::Response(ty) => { self.is_active = false; sender .output(match ty { gtk::ResponseType::Accept => AlertResponse::Confirm, gtk::ResponseType::Other(_) => AlertResponse::Option, _ => AlertResponse::Cancel, }) .unwrap(); } } }\n} struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement, CloseRequest, Save, Close, Ignore,\n} #[relm4::component]\nimpl SimpleComponent for App { type Input = AppMsg; type Output = (); type Init = (); view! { main_window = gtk::ApplicationWindow { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop }, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, append = >k::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, append = >k::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, append = >k::Label { set_margin_all: 5, #[watch] set_label: &format!(\"Counter: {}\", model.counter), }, append = >k::Button { set_label: \"Close\", connect_clicked[sender] => move |_| { sender.input(AppMsg::CloseRequest); }, }, }, } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } AppMsg::Save => { println!(\"* Open save dialog here *\"); } AppMsg::Close => { relm4::main_application().quit(); } AppMsg::Ignore => (), } } fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } }\n} fn convert_alert_response(response: AlertResponse) -> AppMsg { match response { AlertResponse::Confirm => AppMsg::Close, AlertResponse::Cancel => AppMsg::Ignore, AlertResponse::Option => AppMsg::Save, }\n} fn main() { let app = RelmApp::new(\"relm4.example.alert\"); app.run::(());\n}","breadcrumbs":"Child components » The complete code","id":"110","title":"The complete code"},"111":{"body":"Widget templates are a simple way to define reusable UI elements. When building complex UIs, they allow you to focus on the application logic instead of complex trees of widgets. Yet most importantly, widget templates help you to reduce redundant code. For example, if you use a widget with the same properties multiple times in your code, templates will make your code a lot shorter. The app we will write in this chapter is also available here . Run cargo run --example widget_template from the example directory if you want to see the code in action.","breadcrumbs":"Widget templates » Widget templates","id":"111","title":"Widget templates"},"112":{"body":"To define a widget template, you need to implement the WidgetTemplate trait for a new type. You could do this manually, but the easiest solution is to use the #[relm4::widget_template] attribute macro. The macro will create the type and implement the trait for you. For example, the following code block will create a template for a gtk::Box with a certain margin and custom CSS. #[relm4::widget_template]\nimpl WidgetTemplate for MyBox { view! { gtk::Box { set_margin_all: 10, // Make the boxes visible inline_css: \"border: 2px solid blue\", } }\n} Similarly, we can create a template for a gtk::Spinner that already spins when it's created. #[relm4::widget_template]\nimpl WidgetTemplate for MySpinner { view! { gtk::Spinner { set_spinning: true, } }\n} To create public templates, you can use #[relm4::widget_template(pub)], similar to the #[relm4::component(pub)] macro.","breadcrumbs":"Widget templates » Defining templates","id":"112","title":"Defining templates"},"113":{"body":"Templates are more than just pre-initialized widgets. They can also have children, which can be referred to later as template children. This is very useful if you use nested widget in you UI, because the template allows you to flatten the structure. In other words, no matter how deeply nested a template child is, it will always be accessible directly from the template. We'll see how this works in the next section, but first we'll create a deeply nested template. We use the templates we defined earlier by using the #[template] attribute. Also, we assign the name child_label to our last widget, which is all we need to make it a template child. In general, naming a widget in a template is all that's needed to make it a template child. #[relm4::widget_template]\nimpl WidgetTemplate for CustomBox { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, // Deeply nested! #[name = \"child_label\"] gtk::Label { set_label: \"This is a test\", } } } } } }\n}","breadcrumbs":"Widget templates » Template children","id":"113","title":"Template children"},"114":{"body":"To use templates in a component, we use the #[template] and #[template_child] attributes. In this case, we use the CustomBox type we just defined with the #[template] attribute we already used. To access its child_label template child, we only need to use the #[template_child] attribute and the name of the child. As you can see, we now have access to the child_label widget, which actually is wrapped into 4 gtk::Box widgets. We can even use assign or overwrite properties of the template and its children, similar to regular widgets. Here, we use the #[watch] attribute to update the label with the latest counter value. #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Widget template\"), set_default_width: 300, set_default_height: 100, #[template] CustomBox { gtk::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, #[template_child] child_label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), } }, } }","breadcrumbs":"Widget templates » Using templates","id":"114","title":"Using templates"},"115":{"body":"If you run this code, you will notice that the label appears above the two buttons, which is contrary to our widget definition. This happens because widget templates are initialized before other modifications happen. The CustomBox template will initialize its child_label and append it to its internal gtk::Box widget and only then the two buttons are added. However, you can work around this by using methods like prepend, append or insert_child_after (if you use a gtk::Box as container) or by splitting your templates into smaller ones. To make template children appear in the same order as they are used, widget templates would require dynamic initialization of its children. This would increase the complexity of the internal implementation by a lot (or might not be possible at all) and is therefore not planned at the moment.","breadcrumbs":"Widget templates » Some notes on orders","id":"115","title":"Some notes on orders"},"116":{"body":"use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{ gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent, WidgetTemplate,\n}; #[relm4::widget_template]\nimpl WidgetTemplate for MyBox { view! { gtk::Box { set_margin_all: 10, // Make the boxes visible inline_css: \"border: 2px solid blue\", } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for MySpinner { view! { gtk::Spinner { set_spinning: true, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for CustomBox { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, // Deeply nested! #[name = \"child_label\"] gtk::Label { set_label: \"This is a test\", } } } } } }\n} #[derive(Default)]\nstruct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Widget template\"), set_default_width: 300, set_default_height: 100, #[template] CustomBox { gtk::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, #[template_child] child_label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), } }, } } fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Self { counter }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.widget_template\"); app.run::(0);\n}","breadcrumbs":"Widget templates » The complete code","id":"116","title":"The complete code"},"117":{"body":"Starting from the version 0.6.2 , you can access nested elements on templates. Imagine a template called \"MainWindow\" which contains pages as Widget Templates: #[relm4::widget_template]\nimpl WidgetTemplate for MainWindow { view! { gtk::Window { set_title: Some(\"Nested Widget template\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, #[name(stk_pages)] gtk::Stack { set_margin_all: 7, #[template] #[name = \"home_page\"] add_child = &HomePage {} -> { set_name: \"main\", }, #[template] #[name = \"settings_page\"] add_child = &SettingsPage {} -> { set_name: \"settings\", }, }, }, } }\n} SettingsPage and HomePage are also a widget template: #[relm4::widget_template]\nimpl WidgetTemplate for HomePage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_go_settings\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"emblem-system-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for SettingsPage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_dark_mode\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"night-light-symbolic\"), }, }, #[name = \"btn_go_homepage\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"user-home-symbolic\"), }, }, } }\n} If you want to handle MainWindow->SettingsPage->btn_dark_mode's clicked event, you can simply do it like this: #[derive(Default)]\nstruct AppModel { current_page: &'static str,\n} #[derive(Debug)]\nenum Message { PageHome, PageSettings, DarkMode,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = Message; type Output = (); view! { #[template] MainWindow { #[template_child] settings_page.btn_dark_mode { connect_clicked => Message::DarkMode }, #[template_child] settings_page.btn_go_homepage { connect_clicked => Message::PageHome }, #[template_child] home_page.btn_go_settings { connect_clicked => Message::PageSettings }, #[template_child] stk_pages { #[watch] set_visible_child_name: model.current_page, } }, }","breadcrumbs":"Widget templates » Accessing Nested Template Elements » Accessing Nested Template Elements","id":"117","title":"Accessing Nested Template Elements"},"118":{"body":"use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmWidgetExt, SimpleComponent, WidgetTemplate}; #[relm4::widget_template]\nimpl WidgetTemplate for HomePage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_go_settings\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"emblem-system-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for SettingsPage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_dark_mode\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"night-light-symbolic\"), }, }, #[name = \"btn_go_homepage\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"user-home-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for MainWindow { view! { gtk::Window { set_title: Some(\"Nested Widget template\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, #[name(stk_pages)] gtk::Stack { set_margin_all: 7, #[template] #[name = \"home_page\"] add_child = &HomePage {} -> { set_name: \"main\", }, #[template] #[name = \"settings_page\"] add_child = &SettingsPage {} -> { set_name: \"settings\", }, }, }, } }\n} #[derive(Default)]\nstruct AppModel { current_page: &'static str,\n} #[derive(Debug)]\nenum Message { PageHome, PageSettings, DarkMode,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = Message; type Output = (); view! { #[template] MainWindow { #[template_child] settings_page.btn_dark_mode { connect_clicked => Message::DarkMode }, #[template_child] settings_page.btn_go_homepage { connect_clicked => Message::PageHome }, #[template_child] home_page.btn_go_settings { connect_clicked => Message::PageSettings }, #[template_child] stk_pages { #[watch] set_visible_child_name: model.current_page, } }, } fn init( _init_param: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Self { current_page: \"main\", }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Message, _sender: ComponentSender) { match msg { Message::DarkMode => { println!(\"Mode changed\"); } Message::PageHome => { self.current_page = \"main\"; } Message::PageSettings => { self.current_page = \"settings\"; } } }\n} fn main() {}","breadcrumbs":"Widget templates » Accessing Nested Template Elements » The complete code","id":"118","title":"The complete code"},"119":{"body":"The handling of CLI arguments in Relm4 has some specifics you should be aware of. The first one is that Relm4/GTK tries to parse the arguments again even if you parsed them yourself already. This means the program will crash with an error like Unknown option --non-gtk-arg. To fix this you can use the with_args method to provide the arguments the GTK app should parse. The easiest way is to just provide an empty Vec but this has the disadvantage that the standard GTK arguments don't work anymore. We will now make it work in combination with the popular clap crate. To be precise we will use the derive feature which you can learn about in the clap documentation but it works with the builder pattern too of course. To pass a Vec of GTK arguments we need to separate the arguments we want to consume ourselves from those we want to pass to GTK. In clap you can achieve this using a combination of allow_hyphen_values and trailing_var_arg . #[derive(Parser, Debug)]\n#[command(version, about, long_about = None)]\nstruct Args { /// some argument to test #[arg(long)] non_gtk_arg: bool, /// Unknown arguments or everything after -- gets passed through to GTK. #[arg(allow_hyphen_values = true, trailing_var_arg = true)] gtk_options: Vec,\n} Now in our main function we can parse the CLI arguments using Args::parse() and pass args.gtk_options to GTK/Relm4. The first argument is (as per convention) the program invocation so we need to add that first: let program_invocation = std::env::args().next().unwrap(); let mut gtk_args = vec![program_invocation]; gtk_args.extend(args.gtk_options.clone()); let app = RelmApp::new(\"relm4.test.helloworld_cli\"); app.with_args(gtk_args).run::(());","breadcrumbs":"Command Line Interfaces » Command Line Interfaces","id":"119","title":"Command Line Interfaces"},"12":{"body":"GTK4 provides widgets as building blocks for your UI, like buttons, input fields or text areas. They can visualize data and also receive user inputs. In Relm4, user inputs are usually directly translated into input messages for our components. It's important to understand that widgets behave similar to Rc . Most importantly, this means that: Cloning a widget doesn't create a new instance, but just increases the reference count. Widgets are kept alive automatically. Dropping widgets that are still used somewhere does not destroy them, but just decreases the reference count. Widgets are not thread-safe. Widgets don't implement Send and can only be used on the main thread.","breadcrumbs":"Basic concepts » Widgets » Widgets","id":"12","title":"Widgets"},"120":{"body":"To compile, run and pass arguments to the built binary in one command we can use cargo run -- and pass our arguments after that. If you wonder what the -- means: This is the end of options convention : \"The first -- argument that is not an option-argument should be accepted as a delimiter indicating the end of options. Any following arguments should be treated as operands, even if they begin with the '-' character.\" We can now look at the result using cargo run -- --help: Usage: cli [OPTIONS] [GTK_OPTIONS]... Arguments: [GTK_OPTIONS]... Unknown arguments or everything after -- gets passed through to GTK Options: --non-gtk-arg some argument to test -h, --help Print help -V, --version Print version This is the help text provided by clap. If you want to see the GTK help text you can use cargo run -- -- --help: Usage: cli [OPTION?] Help Options: -h, --help Show help options --help-all Show all help options --help-gapplication Show GApplication options And if the GTK option is unique and not used by your program the (second) -- is not needed anymore, e.g. cargo run -- --help-all: Usage: cli [OPTION?] Help Options: -h, --help Show help options --help-all Show all help options --help-gapplication Show GApplication options GApplication Options: --gapplication-service Enter GApplication service mode (use from D-Bus service files) Of course you can replace cargo run -- by your binary name later, e.g.: your-cool-app --help-all.","breadcrumbs":"Command Line Interfaces » Result","id":"120","title":"Result"},"121":{"body":"Here is a minimal working example code with some debug output: use clap::Parser;\nuse gtk::prelude::GtkWindowExt;\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, SimpleComponent}; struct AppModel {} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = (); type Output = (); view! { gtk::Window { set_title: Some(\"Hello world with CLI\"), set_default_width: 300, set_default_height: 100, gtk::Label { set_label: \"Hello world!\", } } } fn init( _init: Self::Init, root: Self::Root, _sender: ComponentSender, ) -> ComponentParts { let model = AppModel {}; let widgets = view_output!(); ComponentParts { model, widgets } }\n} #[derive(Parser, Debug)]\n#[command(version, about, long_about = None)]\nstruct Args { /// some argument to test #[arg(long)] non_gtk_arg: bool, /// Unknown arguments or everything after -- gets passed through to GTK. #[arg(allow_hyphen_values = true, trailing_var_arg = true)] gtk_options: Vec,\n} fn main() { let args = Args::parse(); dbg!(&args); let program_invocation = std::env::args().next().unwrap(); let mut gtk_args = vec![program_invocation]; gtk_args.extend(args.gtk_options.clone()); let app = RelmApp::new(\"relm4.test.helloworld_cli\"); app.with_args(gtk_args).run::(());\n}","breadcrumbs":"Command Line Interfaces » The complete code","id":"121","title":"The complete code"},"122":{"body":"So far, we only discussed which features Relm4 provides. Yet, Relm4 is based on GTK, which itself has many useful features. Let’s have a look at it! This is just an overview. I’ve linked the relevant sections of the gtk-rs book but if you want to get familiar with all the features, I recommend reading the book from the start.","breadcrumbs":"gtk-rs overview » gtk-rs overview","id":"122","title":"gtk-rs overview"},"123":{"body":"GTK is an object-oriented framework that uses the GObject library to implement objects. GObjects have some really useful features that we will discuss in the following sections.","breadcrumbs":"gtk-rs overview » GObjects","id":"123","title":"GObjects"},"124":{"body":"Like many other OOP frameworks or languages, GObjects can inherit from other GObjects. This is called subclassing. In the case of GTK, that’s really helpful because it allows us to create custom widgets. For example, you could use subclassing to create your own button widget that acts as a counter. Or you can create a custom application window that better suits your application. Read more about subclassing in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Subclassing","id":"124","title":"Subclassing"},"125":{"body":"Each GObject can have properties that work similar to the fields of a structure in Rust. You can set them and you can read (get) them. But one thing that's particularly cool is that properties can be bound to other properties. For example, you could bind the \"visible\" property of a widget to the \"active\" property of a gtk::ToggleButton. This would allow you to show or hide the widget using the toggle button and the best part is, that it's done fully automatically! Read more about properties in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Properties","id":"125","title":"Properties"},"126":{"body":"GObjects can not only have properties but also signals. Actually, we've been using signals all the time, for example, by using the connect_clicked method on a button. This method simply adds an event handler function for the \"click\" signal. You can create your own signals in custom widgets. You can also use emit to emit signals on you widgets manually. Read more about signals in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Signals","id":"126","title":"Signals"},"127":{"body":"Most applications need to store settings at some point. GTK makes that pretty simple. You can use gtk::Settings to store your settings and keep them stored after your app has been closed. Read more about settings in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Settings","id":"127","title":"Settings"},"128":{"body":"Relm4 has factories for generating widgets from collections of data. GTK has a similar mechanism that should be used for large list. Because GTK knows which widgets of a list are actually shown it can optimize the rendering and memory usage a lot better. Read more about lists in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Lists","id":"128","title":"Lists"},"129":{"body":"Relm4 leaves it up to you how to create your UI. You can do it manually like in our first app, you can do with the widget macro or you can use the interface builder from GTK. With composite templates, you can use a XML file to specify your widgets and properties. Read more about the composite templates in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Composite templates","id":"129","title":"Composite templates"},"13":{"body":"Components are the fundamental building blocks of Relm4. To create a component you need to implement the Component trait.","breadcrumbs":"Basic concepts » Components » Components","id":"13","title":"Components"},"130":{"body":"Some Relm4 apps require static assets or resources (such as icons or images) to function. In GTK apps, static assets are transformed into GResource bundles, which are then loaded by the app. This guide shows how to set up GResource bundles within a Relm4 project.","breadcrumbs":"Resource Bundles » Resource Bundles","id":"130","title":"Resource Bundles"},"131":{"body":"This demonstrates a Cargo-only approach to including resources (i.e. it does not require extra build tools like Meson, or out-of-band shell scripts).","breadcrumbs":"Resource Bundles » Cargo","id":"131","title":"Cargo"},"132":{"body":"We add the static resources (in this example, icon files), plus a gresource descriptor, to the project's data folder: data/ icons/ icon-foo.svg icon-bar.svg icons.gresource.xml The icons are placed under the data/icons directory. The icons.gresource.xml file looks like this (adapt it as required, e.g. using -symbolic icon names): \n icons/icon-foo.svg icons/icon-bar.svg \n","breadcrumbs":"Resource Bundles » data directory","id":"132","title":"data directory"},"133":{"body":"In Cargo.toml, we add a build dependency on glib-build-tools. This gives us access to the glib_build_tools::compile_resources function which we will need later: [package]\nname = \"foobar\" [build-dependencies]\nglib-build-tools = \"0.17.10\" Note: you should ensure that the glib-build-tools version aligns with the general GLib version you are building for.","breadcrumbs":"Resource Bundles » Cargo.toml","id":"133","title":"Cargo.toml"},"134":{"body":"In build.rs, we call the compile_resources function which creates a GResource bundle from the icons: use glib_build_tools::compile_resources; fn main() { compile_resources( &[\"data\"], \"data/icons.gresource.xml\", \"icons.gresource\", );\n}","breadcrumbs":"Resource Bundles » build.rs","id":"134","title":"build.rs"},"135":{"body":"In main.rs (or wherever you initialise your Relm4 app), we load the icons.gresource bundle that Cargo generates: fn initialize_custom_icons() { gio::resources_register_include!(\"icons.gresource\").unwrap(); let display = gdk::Display::default().unwrap(); let theme = gtk::IconTheme::for_display(&display); theme.add_resource_path(\"/com/example/Foobar/icons\");\n} fn main() { let app = RelmApp::new(\"com.example.Foobar\"); // (optional) initialize default icons relm4_icons::initialize_icons(); // custom icons initialize_custom_icons();\n} It should now be possible to reference the resources by name within your app, for example: view! { gtk::Button { set_icon_name: \"icon-foo\" }\n}","breadcrumbs":"Resource Bundles » main.rs","id":"135","title":"main.rs"},"136":{"body":"We recommend that you establish a CI build for your Relm4 app. This guide describes how to do it, and the caveats you must observe to make the build work.","breadcrumbs":"Continuous Integration guide » Continuous Integration","id":"136","title":"Continuous Integration"},"137":{"body":"Starting with Relm 0.6.1, you can set up a CI build for your app on GitHub Actions. We recommend that you use the gtk4-rs container approach, as shown below: name: Rust on: push: branches: [ \"main\" ] pull_request: branches: [ \"main\" ] jobs: build: runs-on: ubuntu-latest container: image: ghcr.io/gtk-rs/gtk4-rs/gtk4:latest # TODO enable minor version tags / pinning steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable - name: Build run: cargo build - name: Test run: cargo test Note: You can alternatively just run the cargo build on the ubuntu-latest base image. However, this will tie your Relm app's GNOME and GTK version to Ubuntu's 2-year LTS release cycle, so you will not be able to use newer GNOME / GTK versions in the meantime. We therefore recommend that most projects use the gtk4-rs container approach instead.","breadcrumbs":"Continuous Integration guide » GitHub Actions","id":"137","title":"GitHub Actions"},"138":{"body":"There are quite a few of examples where the component macro is used in this book. Still, we haven't covered everything in the previous chapters, and it's also nice to have all the information in one place. This chapter serves as an exhaustive reference for the component macro syntax. The component attribute macro expects a trait implementation of SimpleComponent, Component, or FactoryComponent on a user-provided struct that holds the component's state.","breadcrumbs":"Component macro reference » The component macro reference","id":"138","title":"The component macro reference"},"139":{"body":"If you want to make the Widgets struct generated by the macro public, you can provide pub (or any other visibility) as an argument to the attribute macro. #[relm4::component(pub)]","breadcrumbs":"Component macro reference » Public widgets","id":"139","title":"Public widgets"},"14":{"body":"The Component trait is the base of every component inside Relm4, it defines how a component should behave, communicate and produce widgets.","breadcrumbs":"Basic concepts » Components » The Component trait","id":"14","title":"The Component trait"},"140":{"body":"The view! macro allows us to easily define widgets and mutate their properties.","breadcrumbs":"Component macro reference » The view! macro","id":"140","title":"The view! macro"},"141":{"body":"All components must have a root widget in their view! macro, such as gtk::Window or gtk::Box. Widgets are constructed by providing the type of the widget followed by curly braces. This will construct the widget using its Default implementation. view! { gtk::Window { ... }\n} Some, widgets don't have a Default implementation or it may be more convenient to use a constructor method. In this case, you can use the following syntax: // Constructor method\ngtk::Label::new(Some(\"Label from constructor method\")) { /* ... */ } // Builder pattern\ngtk::Label::builder() .label(\"Label from builder pattern\") .selectable(true) .build() { /* ... */ } You can also use regular functions. Because macro often needs to know the type of the widget for code generation, you may need to specify it. set_property_name = new_box() -> gtk::Box { ... }","breadcrumbs":"Component macro reference » Constructing widgets","id":"141","title":"Constructing widgets"},"142":{"body":"Child widgets are added by nesting the declarations. view! { gtk::Window { gtk::Box { } }\n} If another method is needed to assign a child, you can call it instead like this: gtk::Box { // Use append append = >k::Label { ... }\n} Use & in front of the widget type to assign a reference. A common mistake is to accidentally use : instead of = for assigning widgets. If the widget needs to be wrapped in another type (commonly Option), use the wrap attribute: #[wrap(Some)]\nset_property_name = gtk::Box { ... } Sometimes you need to pass additional arguments along with the widget, for example when calling gtk::Grid::attach . You can do this by providing the additional arguments in square brackets after the method: gtk::Grid { // Attach the label to a grid attach[0, 0, 1, 2]= >k::Label { ... }\n} This will expand to __grid.attach(__label, 0, 0, 1, 2)","breadcrumbs":"Component macro reference » Child widgets","id":"142","title":"Child widgets"},"143":{"body":"Widgets may be given a name with the name attribute. These names are accessible as fields on the Widgets struct generated by the macro. #[name = \"important_label\"]\ngtk::Label { ... } // ... let widgets = view_output!();\nlet label = &widgets.important_label; Names can also be assigned with this syntax: set_child: important_label = gtk::Label { ... }","breadcrumbs":"Component macro reference » Naming widgets","id":"143","title":"Naming widgets"},"144":{"body":"The view macro allows you to include if and match statements for conditionally showing widgets. Internally, the macro will use a gtk::Stack, so you can also use different transition types . if model.value % 2 == 0 { gtk::Label { set_label: \"The value is even\", }, gtk::Label { set_label: \"The value is odd\", }\n} // Use a transition type to set an animation when the visible widget changes\n#[transition = \"SlideRight\"]\nmatch model.value { 0..=9 => { gtk::Label { set_label: \"The value is below 10\", }, } _ => { gtk::Label { set_label: \"The value is equal or above 10\", }, }\n} If your conditional widget uses a match statement over an enum, you can destructure the enum in the match arms to access its variables with the help of the #[track] or #[watch] macros: enum Foo { Bar(f32), Baz(String),\n} struct FooView { foo: Foo\n} impl Component for FooView { type Init = Foo; // snip view! { #[root] gtk::Box { append = match &model.foo { Foo::Bar(num_value) => { gtk::SpinButton { // adding the `watch` macro lets you reference the destructured variables #[watch] set_value: num_value } } Foo::Baz(str_value) => { gtk::Label { #[watch] set_text: &str_value } } } } } // snip\n} Please note: if you attempt to destructure in the normal way - without the track or watch macros - you will get a compilation error, and Rust will 'fail to see' the destructured variables at the point where your code uses them. This is due to limitations in Relm4's component initialization strategy. Please ensure that you use one of those macros to avoid this.","breadcrumbs":"Component macro reference » Conditional widgets","id":"144","title":"Conditional widgets"},"145":{"body":"Sometimes, methods used for assigning widgets return another widget. For example, gtk::Stack::add_child() allows you to add a widget to the stack, but also returns a gtk::StackPage widget. To get access to this widget, you can use a special syntax of the view macro: gtk::Stack { add_child = >k::Label { set_label: \"placeholder\", } -> { // Access the returned widgets (in this case gtk::StackPage) set_title: \"page title\", }\n} The returned widget can be named with the following syntax: method = &Widget { ... } -> NAME: RETURNED_TYPE { ... } and can be subsequently accessed via the Widgets struct. In factories the returned widget is a parameter of the FactoryComponent::init_widgets() method. You can use the #[local_ref] attribute to access it in the view macro, for example when the factory widget is a Stack which returns a StackPage: view! { #[root] root = gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_halign: gtk::Align::Center, set_spacing: 10, set_margin_all: 12, #[name(label)] gtk::Label { set_use_markup: true, #[watch] set_label: &format!(\"Counter value: {}\", self.value), set_width_chars: 3, }, }, #[local_ref] returned_widget -> gtk::StackPage { set_name: &self.name, set_title: &self.name, } }","breadcrumbs":"Component macro reference » Returned widgets","id":"145","title":"Returned widgets"},"146":{"body":"Properties are initialized and mutated by calling methods within the widget types. Check the documentation for each widget type to see what methods are available. Generally properties are set via setter methods, but any methods on the widget can also be called. Many of these methods are part of an extension trait associated with the widget type. These traits must be in scope to call their methods. For example, if you want to use the set_default_width method from the GtkWindowExt trait, you must import the trait directly or glob import it from the prelude (use gtk::prelude::*;). To initialize a property with a value: set_property_name: value, Initialize a property only if its value is Some, and do nothing if it's None: set_property_name?: value, Call a method that has multiple arguments: set_property_name: (value1, value2, ...), Initialize and automatically update a property. #[watch]\nset_property_name: (value1, value2, ...), Initialize and automatically update a property with a tracker. The track_expression can be any expression that returns a bool. If it's true, it indicates that the method should be called: #[track(track_expression)]\nset_property_name: (value1, value2, ...), Initialize a property by iterating over an iterator. You can use this for repeated calls to setter functions, like add_class_name in case you have multiple class names in a Vec. #[iterate]\nset_property_name: iterator,","breadcrumbs":"Component macro reference » Properties","id":"146","title":"Properties"},"147":{"body":"It is possible that several traits implement the same method for a type. If both traits are in scope and you want to use the duplicated method name, you need to tell Rust which trait it should use. To specify the intended trait, use the TraitName::method syntax, similar to Rust's fully qualified syntax for trait disambiguation . You can also use the full path of the trait if desired.","breadcrumbs":"Component macro reference » Trait disambiguation","id":"147","title":"Trait disambiguation"},"148":{"body":"When connecting signals emitted by widgets you can clone fields that you need in the closure (for example, the component sender) by listing the corresponding fields in square brackets. connect_name[cloned_var1, cloned_var2, ...] => move |arg1, arg2, ...| { ... } There is a shorthand for sending a message per event handlers like ComponentSender or AsyncComponentSender. connect_clicked => AppMsg::Increase, A member of a struct or the result of a method can also be used inside the closure by assigning it to a variable. connect_name[sender = components.sender.clone()] => move |...| { ... }","breadcrumbs":"Component macro reference » Signals","id":"148","title":"Signals"},"149":{"body":"Some signals are not only emitted after a user interaction, but also when you change values though your code, for example by using #[watch]. This might not be the desired behavior and can even cause your application to freeze under certain circumstances. To avoid this, you can name signal handlers by using an @ and a name after the signal closure. Then, you can use the signal handler name in the #[block_signal(handler_name)] attribute to deactivate the signal handler while you edit a value. gtk::ToggleButton { set_label: \"Counter is even\", #[watch] #[block_signal(toggle_handler)] set_active: counter.value % 2 == 0, connect_toggled[sender] => move |_| { sender.input(AppMsg::Increment); } @toggle_handler, },","breadcrumbs":"Component macro reference » Blocking signals temporarily","id":"149","title":"Blocking signals temporarily"},"15":{"body":"The SimpleComponent trait is a convenience trait that implements the Component trait, but removes some advanced features that are not relevant for most use-cases. For each implementation of SimpleComponent, Relm4 will automatically implement Component as well. Thus, it can also be used instead of Component. This mechanism is called blanket implementation and is used for traits like From in the standard library as well.","breadcrumbs":"Basic concepts » Components » The SimpleComponent trait","id":"15","title":"The SimpleComponent trait"},"150":{"body":"Sometimes the macro isn't flexible enough. In this case, you can always use manual code that will not be modified by the macro. Here's a list of all the options available. #[relm4_macros::component]\nimpl SimpleComponent for App { // ... view! { // ... } additional_fields! { // ... } fn pre_view() { // ... } fn post_view() { // ... }\n}","breadcrumbs":"Component macro reference » Manual code","id":"150","title":"Manual code"},"151":{"body":"The widgets struct is automatically generated by the macro, but you can also add fields manually. additional_fields! { test: u8,\n} Initialize the variable in the init function by naming a local variable like your custom field. let test = 0; let widgets = view_output!();","breadcrumbs":"Component macro reference » Add more fields to your widgets","id":"151","title":"Add more fields to your widgets"},"152":{"body":"You can also implement your own view logic, which will be added to the view code that the macro generates. Code inside pre_view() will run before the code of the macro, and post_view() will run after it. Code inside these \"functions\" isn't like a normal function! The macro disallows returning early in pre_view to ensure that the code of the macro will always be executed.","breadcrumbs":"Component macro reference » Manual view","id":"152","title":"Manual view"},"153":{"body":"To better understand the component macro, we will examine how the different parts of the macro are translated into real Rust code (aka the macro expansion). Therefore, we will write a small app that uses as many component macro features as possible.","breadcrumbs":"Component macro reference » Macro expansion » Macro expansion","id":"153","title":"Macro expansion"},"154":{"body":"First, let's have a look at the parts of the code that are later used by the macro.","breadcrumbs":"Component macro reference » Macro expansion » The boilerplate","id":"154","title":"The boilerplate"},"155":{"body":"The model simply stores a counter. #[tracker::track]\nstruct AppModel { value: u8,\n}","breadcrumbs":"Component macro reference » Macro expansion » The model","id":"155","title":"The model"},"156":{"body":"The message type is the same as in our first app. It includes a message to increment and decrement the counter. #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n}","breadcrumbs":"Component macro reference » Macro expansion » The message type","id":"156","title":"The message type"},"157":{"body":"Before we break it down into smaller parts, let's take a look at the macro as a whole. If you're unfamiliar with the macro syntax, check out the previous chapter. There's a lot here, but that's because the macro supports a lot of functions! #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); view! { #[root] #[name(main_window)] gtk::Window { set_title: Some(\"Macro reference example\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, append: inc_button = >k::Button { set_label: \"Increment\", // Only set this if `icon_name` is Some set_icon_name?: icon_name, connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); } }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); } }, gtk::Grid { attach[1, 1, 1, 1] = >k::Label { // Alternative: #[track = \"counter.value % 10 == 0\"] #[track(counter.value % 10 == 0)] set_label: &format!(\"Grid works! ({})\", counter.value), } }, // A conditional widget // Alternative: #[transition = \"SlideLeft\"] #[transition(SlideLeft)] append = if counter.value % 2 == 0 { gtk::Label { set_label: \"Value is even\", } } else if counter.value % 3 == 0 { gtk::Label { set_label: \"Value is dividable by 3\", } } else { gtk::Label { set_label: \"Value is odd\", } }, #[transition = \"SlideRight\"] append: match_stack = match counter.value { (0..=2) => { gtk::Label { set_label: \"Value is smaller than 3\", } }, _ => { gtk::Label { set_label: \"Value is higher than 2\", } } }, append = >k::Label, gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(), gtk::Label::new(Some(\"Constructors work!\")), /// Counter label gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", counter.value), #[track] set_margin_all: counter.value.into(), }, gtk::ToggleButton { set_label: \"Counter is even\", #[watch] #[block_signal(toggle_handler)] set_active: counter.value % 2 == 0, connect_toggled[sender] => move |_| { sender.input(AppMsg::Increment); } @toggle_handler, }, #[local] local_label -> gtk::Label { set_opacity: 0.7, }, #[local_ref] local_ref_label -> gtk::Label { set_opacity: 0.7, set_size_request: (40, 40), }, } }, gtk::Window { set_title: Some(\"Another window\"), set_default_width: 300, set_default_height: 100, set_transient_for: Some(&main_window), // Empty args hide: (), #[watch] set_visible: counter.value == 42, #[name = \"my_label_name\"] gtk::Label { set_label: \"You made it to 42!\", } } } additional_fields! { test_field: u8, } // Initialize the UI. fn init( init: Self::Init, renamed_root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; // Set icon name randomly to Some(\"go-up-symbolic\") or None let icon_name = rand::random::().then_some(\"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model: counter, widgets, } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } }\n}","breadcrumbs":"Component macro reference » Macro expansion » The macro","id":"157","title":"The macro"},"158":{"body":"The macro expansion is not supposed to be readable, so the code might look a bit ugly.","breadcrumbs":"Component macro reference » Macro expansion » The expansion","id":"158","title":"The expansion"},"159":{"body":"The fields of the widgets struct cover all widgets we created, plus the additional fields we added manually. Named fields like main_window and inc_button keep their names. Unnamed fields will get automatically generated names with an unique ID. You should never refer to unnamed fields in your code because their names might change. At the end, we can find the additional field called test_field that we added manually. #[allow(dead_code)]\nstruct AppWidgets { #[allow(missing_docs)] main_window: gtk::Window, #[allow(missing_docs)] _gtk_box_14: gtk::Box, #[allow(missing_docs)] inc_button: gtk::Button, #[allow(missing_docs)] _gtk_button_0: gtk::Button, #[allow(missing_docs)] _gtk_grid_2: gtk::Grid, #[allow(missing_docs)] _gtk_label_1: gtk::Label, #[allow(missing_docs)] _conditional_widget_3: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_4: gtk::Label, #[allow(missing_docs)] _gtk_label_5: gtk::Label, #[allow(missing_docs)] _gtk_label_6: gtk::Label, #[allow(missing_docs)] match_stack: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_7: gtk::Label, #[allow(missing_docs)] _gtk_label_8: gtk::Label, #[allow(missing_docs)] _gtk_label_9: gtk::Label, #[allow(missing_docs)] _gtk_label_builder_10: gtk::Label, #[allow(missing_docs)] _gtk_label_new_11: gtk::Label, /// Counter label _gtk_label_12: gtk::Label, #[allow(missing_docs)] _gtk_togglebutton_13: gtk::ToggleButton, #[allow(missing_docs)] toggle_handler: relm4::gtk::glib::signal::SignalHandlerId, #[allow(missing_docs)] local_label: gtk::Label, #[allow(missing_docs)] local_ref_label: gtk::Label, #[allow(missing_docs)] _gtk_window_15: gtk::Window, #[allow(missing_docs)] my_label_name: gtk::Label, test_field: u8,\n}","breadcrumbs":"Component macro reference » Macro expansion » The widgets struct","id":"159","title":"The widgets struct"},"16":{"body":"For our first app, let's create something original: a counter app . GTK Light GTK Dark App screenshot light App screenshot dark Adwaita Light Adwaita Dark App screenshot light adw App screenshot dark adw In this app, we will have a counter which can be incremented and decremented by pressing the corresponding buttons. The app we will write in this chapter is also available here . Run cargo run --example simple_manual from the example directory if you want to see the code in action.","breadcrumbs":"Your first app » Your first app","id":"16","title":"Your first app"},"160":{"body":"The next thing the macro does is generating the SimpleComponent trait implementation block. The start of the implementation block is very similar to the implementation block we use in the macro. Most notably, the Root type is automatically inserted, as is the implementation of init_root. All attributes and comments you add to the widget macro before the impl block should be kept as well. impl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); type Widgets = AppWidgets; fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } } type Root = gtk::Window; fn init_root() -> Self::Root { let main_window = gtk::Window::default(); main_window } Initialization before the view_output entrypoint A large part of the code generated by the macro is dedicated to the initialization of the view. This code is \"expanded\" from the view_output!() entrypoint. First, let's find the code we wrote before the entry point: fn init( init: Self::Init, renamed_root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; let icon_name = rand::random::().then(|| \"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; Next, the macro initializes all widgets. Widgets defined by their type are initialized with their Default implementation. Any constructors or functions that are invoked manually are left unchanged in the output. let main_window = renamed_root.clone(); let _gtk_box_14 = gtk::Box::default(); let inc_button = gtk::Button::default(); let _gtk_button_0 = gtk::Button::default(); let _gtk_grid_2 = gtk::Grid::default(); let _gtk_label_1 = gtk::Label::default(); let _conditional_widget_3 = relm4::gtk::Stack::default(); _conditional_widget_3 .set_transition_type(relm4::gtk::StackTransitionType::SlideLeft); let _gtk_label_4 = gtk::Label::default(); let _gtk_label_5 = gtk::Label::default(); let _gtk_label_6 = gtk::Label::default(); let match_stack = relm4::gtk::Stack::default(); match_stack.set_transition_type(relm4::gtk::StackTransitionType::SlideRight); let _gtk_label_7 = gtk::Label::default(); let _gtk_label_8 = gtk::Label::default(); let _gtk_label_9 = gtk::Label::default(); let _gtk_label_builder_10 = gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(); let _gtk_label_new_11 = gtk::Label::new(Some(\"Constructors work!\")); let _gtk_label_12 = gtk::Label::default(); let _gtk_togglebutton_13 = gtk::ToggleButton::default(); let _gtk_window_15 = gtk::Window::default(); let my_label_name = gtk::Label::default(); Assigning properties Assigning properties looks pretty normal as well. In the middle we have an optional assignment that uses an if let statement to only assign properties that match Some(data). In the macro we marked this line with a ?. main_window.set_title(Some(\"Macro reference example\")); main_window.set_default_width(300); main_window.set_default_height(100); relm4::RelmContainerExt::container_add(&main_window, &_gtk_box_14); _gtk_box_14.set_orientation(gtk::Orientation::Vertical); _gtk_box_14.set_spacing(5); _gtk_box_14.set_margin_all(5); _gtk_box_14.append(&inc_button); inc_button.set_label(\"Increment\"); if let Some(__p_assign) = icon_name { inc_button.set_icon_name(__p_assign); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_button_0); _gtk_button_0.set_label(\"Decrement\"); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_grid_2); _gtk_grid_2.attach(&_gtk_label_1, 1, 1, 1, 1); _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_box_14.append(&_conditional_widget_3); _conditional_widget_3.add_named(&_gtk_label_4, Some(\"0\")); _gtk_label_4.set_label(\"Value is even\"); _conditional_widget_3.add_named(&_gtk_label_5, Some(\"1\")); _gtk_label_5.set_label(\"Value is dividable by 3\"); _conditional_widget_3.add_named(&_gtk_label_6, Some(\"2\")); _gtk_label_6.set_label(\"Value is odd\"); _gtk_box_14.append(&match_stack); match_stack.add_named(&_gtk_label_7, Some(\"0\")); _gtk_label_7.set_label(\"Value is smaller than 3\"); match_stack.add_named(&_gtk_label_8, Some(\"1\")); _gtk_label_8.set_label(\"Value is higher than 2\"); _gtk_box_14.append(&_gtk_label_9); Events Now the macro generates the code for connecting events. { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); inc_button .connect_clicked(move |_| { sender.input(AppMsg::Increment); }); } { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_button_0 .connect_clicked(move |_| { sender.input(AppMsg::Decrement); }); } let toggle_handler = { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_togglebutton_13 .connect_toggled(move |_| { sender.input(AppMsg::Increment); }) }; The code looks very similar to what we wrote in the macro. append: inc_button = >k::Button { set_label: \"Increment\", // Only set this if `icon_name` is Some set_icon_name?: icon_name, connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); } }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); } }, Most notably, the sender we put in the square brackets is cloned as we requested. Initialization after the view_output entrypoint At the end we find the construction of the widgets struct and the construction of the ComponentParts, which was after the view_output! entrypoint. let widgets = Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label: local_ref_label.clone(), _gtk_window_15, my_label_name, test_field, }; ComponentParts { model: counter, widgets, } UI updates The last step of the macro is to generate the update logic within the update_view function. Any code present in the pre_view and post_view \"functions\" will be expanded before or after the generated code. Note that the generated code returns a private struct to prevent early returns in pre_view from skipping the rest of the view update code. /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, sender: ComponentSender) { struct __DoNotReturnManually; let _no_manual_return: __DoNotReturnManually = (move || { #[allow(unused_variables)] let Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label, _gtk_window_15, my_label_name, test_field, } = widgets; #[allow(unused_variables)] let counter = self; if (counter.value % 10 == 0) { _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); } let __current_page = _conditional_widget_3 .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = match_stack .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); match_stack .set_visible_child_name( match counter.value { (0..=2) => { let __page_active: bool = (__current_page == \"0\"); \"0\" } _ => { let __page_active: bool = (__current_page == \"1\"); \"1\" } }, ); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_window_15.set_visible(counter.value == 42); (move || {})(); __DoNotReturnManually })(); } Generated UI updates Within the generated update logic, the macro generates its own code to support more efficient updates. Updates from the #[watch] attribute are unconditional. _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); Updates from expressions annotated with #[track] are conditional based on whether the value changed, or based on if an expression is a certain value. if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, );","breadcrumbs":"Component macro reference » Macro expansion » The SimpleComponent trait implementation","id":"160","title":"The SimpleComponent trait implementation"},"161":{"body":"Congrats for making it this far 🎉! You're now a real expert of Relm4! As you have seen, the macro is nothing magical. It simply works with the information you give it.","breadcrumbs":"Component macro reference » Macro expansion » Conclusion","id":"161","title":"Conclusion"},"162":{"body":"If you want to look at the whole macro expansion at once, here it is. #![feature(prelude_import)]\n//! This example is a modified version of the `macro_reference` example in the [main Relm4\n//! repository][Relm4 repo].\n//!\n//! [Relm4 repo]: https://github.com/Relm4/Relm4/blob/main/examples/macro_reference.rs\n#[prelude_import]\nuse std::prelude::rust_2021::*;\n#[macro_use]\nextern crate std;\nuse gtk::prelude::{ BoxExt, ButtonExt, GridExt, GtkWindowExt, OrientableExt, ToggleButtonExt, WidgetExt,\n};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, SimpleComponent, WidgetPlus};\nstruct AppModel { value: u8, tracker: u8,\n}\nimpl AppModel { #[allow(dead_code, non_snake_case)] /// Get an immutable reference to this field. fn get_value(&self) -> &u8 { &self.value } #[allow(dead_code, non_snake_case)] /// Get a mutable reference to this field. Marks the field as changed. fn get_mut_value(&mut self) -> &mut u8 { self.tracker |= Self::value(); &mut self.value } #[allow(dead_code, non_snake_case)] /// Use a closure to update this field. Marks the field as changed. fn update_value(&mut self, f: F) { self.tracker |= Self::value(); f(&mut self.value); } #[allow(dead_code, non_snake_case)] /// Get bit mask to look for changes on this field. fn value() -> u8 { 1 << 0usize } #[allow(dead_code, non_snake_case)] /// Setter method. Will mark field as changed. fn set_value(&mut self, value: u8) { if self.value != value { self.tracker |= Self::value(); } self.value = value; } #[allow(dead_code)] /// Use this to check whether any changes made to this struct. fn track_all() -> u8 { u8::MAX } #[allow(dead_code)] /// Use this to mark all fields of the struct as changed. fn mark_all_changed(&mut self) { self.tracker = u8::MAX; } /// Check for changes made to this struct. fn changed(&self, mask: u8) -> bool { self.tracker & mask != 0 } /// Resets the tracker of this struct. fn reset(&mut self) { self.tracker = 0; }\n}\nenum AppMsg { Increment, Decrement,\n}\n#[automatically_derived]\nimpl ::core::fmt::Debug for AppMsg { fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { match self { AppMsg::Increment => ::core::fmt::Formatter::write_str(f, \"Increment\"), AppMsg::Decrement => ::core::fmt::Formatter::write_str(f, \"Decrement\"), } }\n}\nstruct AppInit { counter: u8,\n}\n#[allow(dead_code)]\nstruct AppWidgets { #[allow(missing_docs)] main_window: gtk::Window, #[allow(missing_docs)] _gtk_box_14: gtk::Box, #[allow(missing_docs)] inc_button: gtk::Button, #[allow(missing_docs)] _gtk_button_0: gtk::Button, #[allow(missing_docs)] _gtk_grid_2: gtk::Grid, #[allow(missing_docs)] _gtk_label_1: gtk::Label, #[allow(missing_docs)] _conditional_widget_3: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_4: gtk::Label, #[allow(missing_docs)] _gtk_label_5: gtk::Label, #[allow(missing_docs)] _gtk_label_6: gtk::Label, #[allow(missing_docs)] match_stack: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_7: gtk::Label, #[allow(missing_docs)] _gtk_label_8: gtk::Label, #[allow(missing_docs)] _gtk_label_9: gtk::Label, #[allow(missing_docs)] _gtk_label_builder_10: gtk::Label, #[allow(missing_docs)] _gtk_label_new_11: gtk::Label, /// Counter label _gtk_label_12: gtk::Label, #[allow(missing_docs)] _gtk_togglebutton_13: gtk::ToggleButton, #[allow(missing_docs)] toggle_handler: relm4::gtk::glib::signal::SignalHandlerId, #[allow(missing_docs)] local_label: gtk::Label, #[allow(missing_docs)] local_ref_label: gtk::Label, #[allow(missing_docs)] _gtk_window_15: gtk::Window, #[allow(missing_docs)] my_label_name: gtk::Label, test_field: u8,\n}\n#[automatically_derived]\n#[allow(dead_code)]\nimpl ::core::fmt::Debug for AppWidgets { fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { let names: &'static _ = &[ \"main_window\", \"_gtk_box_14\", \"inc_button\", \"_gtk_button_0\", \"_gtk_grid_2\", \"_gtk_label_1\", \"_conditional_widget_3\", \"_gtk_label_4\", \"_gtk_label_5\", \"_gtk_label_6\", \"match_stack\", \"_gtk_label_7\", \"_gtk_label_8\", \"_gtk_label_9\", \"_gtk_label_builder_10\", \"_gtk_label_new_11\", \"_gtk_label_12\", \"_gtk_togglebutton_13\", \"toggle_handler\", \"local_label\", \"local_ref_label\", \"_gtk_window_15\", \"my_label_name\", \"test_field\", ]; let values: &[&dyn ::core::fmt::Debug] = &[ &&self.main_window, &&self._gtk_box_14, &&self.inc_button, &&self._gtk_button_0, &&self._gtk_grid_2, &&self._gtk_label_1, &&self._conditional_widget_3, &&self._gtk_label_4, &&self._gtk_label_5, &&self._gtk_label_6, &&self.match_stack, &&self._gtk_label_7, &&self._gtk_label_8, &&self._gtk_label_9, &&self._gtk_label_builder_10, &&self._gtk_label_new_11, &&self._gtk_label_12, &&self._gtk_togglebutton_13, &&self.toggle_handler, &&self.local_label, &&self.local_ref_label, &&self._gtk_window_15, &&self.my_label_name, &&self.test_field, ]; ::core::fmt::Formatter::debug_struct_fields_finish( f, \"AppWidgets\", names, values, ) }\n}\nimpl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); type Widgets = AppWidgets; fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } } type Root = gtk::Window; fn init_root() -> Self::Root { let main_window = gtk::Window::default(); main_window } /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, sender: ComponentSender) { struct __DoNotReturnManually; let _no_manual_return: __DoNotReturnManually = (move || { #[allow(unused_variables)] let Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label, _gtk_window_15, my_label_name, test_field, } = widgets; #[allow(unused_variables)] let counter = self; if (counter.value % 10 == 0) { _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); } let __current_page = _conditional_widget_3 .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = match_stack .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); match_stack .set_visible_child_name( match counter.value { (0..=2) => { let __page_active: bool = (__current_page == \"0\"); \"0\" } _ => { let __page_active: bool = (__current_page == \"1\"); \"1\" } }, ); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_window_15.set_visible(counter.value == 42); (move || {})(); __DoNotReturnManually })(); } fn init( init: Self::Init, renamed_root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; let icon_name = rand::random::().then(|| \"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; let main_window = renamed_root.clone(); let _gtk_box_14 = gtk::Box::default(); let inc_button = gtk::Button::default(); let _gtk_button_0 = gtk::Button::default(); let _gtk_grid_2 = gtk::Grid::default(); let _gtk_label_1 = gtk::Label::default(); let _conditional_widget_3 = relm4::gtk::Stack::default(); _conditional_widget_3 .set_transition_type(relm4::gtk::StackTransitionType::SlideLeft); let _gtk_label_4 = gtk::Label::default(); let _gtk_label_5 = gtk::Label::default(); let _gtk_label_6 = gtk::Label::default(); let match_stack = relm4::gtk::Stack::default(); match_stack.set_transition_type(relm4::gtk::StackTransitionType::SlideRight); let _gtk_label_7 = gtk::Label::default(); let _gtk_label_8 = gtk::Label::default(); let _gtk_label_9 = gtk::Label::default(); let _gtk_label_builder_10 = gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(); let _gtk_label_new_11 = gtk::Label::new(Some(\"Constructors work!\")); let _gtk_label_12 = gtk::Label::default(); let _gtk_togglebutton_13 = gtk::ToggleButton::default(); let _gtk_window_15 = gtk::Window::default(); let my_label_name = gtk::Label::default(); { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); inc_button .connect_clicked(move |_| { sender.input(AppMsg::Increment); }); } { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_button_0 .connect_clicked(move |_| { sender.input(AppMsg::Decrement); }); } let toggle_handler = { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_togglebutton_13 .connect_toggled(move |_| { sender.input(AppMsg::Increment); }) }; {} main_window.set_title(Some(\"Macro reference example\")); main_window.set_default_width(300); main_window.set_default_height(100); relm4::RelmContainerExt::container_add(&main_window, &_gtk_box_14); _gtk_box_14.set_orientation(gtk::Orientation::Vertical); _gtk_box_14.set_spacing(5); _gtk_box_14.set_margin_all(5); _gtk_box_14.append(&inc_button); inc_button.set_label(\"Increment\"); if let Some(__p_assign) = icon_name { inc_button.set_icon_name(__p_assign); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_button_0); _gtk_button_0.set_label(\"Decrement\"); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_grid_2); _gtk_grid_2.attach(&_gtk_label_1, 1, 1, 1, 1); _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_box_14.append(&_conditional_widget_3); _conditional_widget_3.add_named(&_gtk_label_4, Some(\"0\")); _gtk_label_4.set_label(\"Value is even\"); _conditional_widget_3.add_named(&_gtk_label_5, Some(\"1\")); _gtk_label_5.set_label(\"Value is dividable by 3\"); _conditional_widget_3.add_named(&_gtk_label_6, Some(\"2\")); _gtk_label_6.set_label(\"Value is odd\"); _gtk_box_14.append(&match_stack); match_stack.add_named(&_gtk_label_7, Some(\"0\")); _gtk_label_7.set_label(\"Value is smaller than 3\"); match_stack.add_named(&_gtk_label_8, Some(\"1\")); _gtk_label_8.set_label(\"Value is higher than 2\"); _gtk_box_14.append(&_gtk_label_9); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_builder_10); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_new_11); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_12); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_label_12.set_margin_all(counter.value.into()); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_togglebutton_13); _gtk_togglebutton_13.set_label(\"Counter is even\"); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &local_label); local_label.set_opacity(0.7); relm4::RelmContainerExt::container_add(&_gtk_box_14, &local_ref_label); local_ref_label.set_opacity(0.7); local_ref_label.set_size_request(40, 40); let __current_page = \"\"; _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = \"\"; match_stack .set_visible_child_name( match counter.value { (0..=2) => \"0\", _ => \"1\", }, ); _gtk_window_15.set_title(Some(\"Another window\")); _gtk_window_15.set_default_width(300); _gtk_window_15.set_default_height(100); _gtk_window_15.set_transient_for(Some(&main_window)); _gtk_window_15.hide(); _gtk_window_15.set_visible(counter.value == 42); relm4::RelmContainerExt::container_add(&_gtk_window_15, &my_label_name); my_label_name.set_label(\"You made it to 42!\"); let widgets = Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label: local_ref_label.clone(), _gtk_window_15, my_label_name, test_field, }; ComponentParts { model: counter, widgets, } }\n}","breadcrumbs":"Component macro reference » Macro expansion » The whole macro expansion","id":"162","title":"The whole macro expansion"},"163":{"body":"The sections of this chapter will help you to migrate your code from an older to newer version of Relm4.","breadcrumbs":"Migration guides » Migration guides","id":"163","title":"Migration guides"},"164":{"body":"Fortunately, there aren't many big breaking changes in version 0.4 despite a lot of improvements under the hood. In case you're wondering what happened to version 0.3, Relm4 now tries to follow the version number of gtk4-rs and therefore skipped v0.3.","breadcrumbs":"Migration guides » 0.2 to 0.4 » Migration from v0.2 to v0.4","id":"164","title":"Migration from v0.2 to v0.4"},"165":{"body":"The methods of FactoryPrototype were renamed to better match the rest of Relm4's traits. generate => init_view update => view get_root => root_widget","breadcrumbs":"Migration guides » 0.2 to 0.4 » FactoryPrototype","id":"165","title":"FactoryPrototype"},"166":{"body":"manual_view was renamed to post_view and pre_view was added to run code before the macro generated code in the view function. component! was removed, components are now accessible without extra code. parent! was added to access the parent widgets which previously required no extra code.","breadcrumbs":"Migration guides » 0.2 to 0.4 » widget macro","id":"166","title":"widget macro"},"167":{"body":"The Components trait now has a new method called connect_parent. This method doesn't do much more than passing the parent widgets down to individual components and originated unintentionally in the rework of the initialization process. Because this method is usually just repetitive code, you can now use the derive macro instead: #[derive(relm4::Components)]\nstruct AppComponents { header: RelmComponent, dialog: RelmComponent,\n} The derive macro will always use RelmWorker::with_new_thread() for workers. Also, RelmComponent::with_new_thread() was removed due to the restructuring. It's recommended to use workers or message handlers for blocking operations instead. If there's anything missing, let me know. You can simply open an issue on GitHub or write a message in the Matrix room .","breadcrumbs":"Migration guides » 0.2 to 0.4 » Components","id":"167","title":"Components"},"168":{"body":"Version 0.5 brings many exciting changes but also a few major breaking changes. In this chapter, all changes should be covered to help you migrating your existing code quickly.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Migration from v0.4 to v0.5","id":"168","title":"Migration from v0.4 to v0.5"},"169":{"body":"Component unifies several traits that existed before. It entirely replaces AppUpdate, ComponentUpdate, AsyncComponentUpdate, MessageHandler, MicroModel, MicroWidgets, Components and Widgets. Components are now more similar to MicroComponent which means they are much more flexible and don't need a typed connection to their parent component. This makes using the same component with different parent components much easier. Instead of accessing the parent model, you define Init as a type that includes all information to initialize the component. The life cycle has changed a bit, too. Initialization of the root widget . The reason behind this is to allow parent components to access the root widget before the rest of the component is initialized. Initialize the component itself and the widgets . This happens in one method now, which makes it easier especially for more difficult initializations. Regarding updates, there hasn't been a lot of changes. However you can now optionally update view and model at once using update_with_view . The shutdown method is called when the component is destroyed. Components don't have to live for the entire application lifespan anymore.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Components","id":"169","title":"Components"},"17":{"body":"Often, programming concepts are easier to understand when explained with examples or metaphors from the real world. To understand how Relm4 apps work, you can think about a computer as a person. Our job as a programmer is to ensure that the users of our app will be able to communicate with the computer through the UI. Since the computer can't understand our human language, it needs some help from us to get the communication going. Let's have a look at what we need to get this done!","breadcrumbs":"Your first app » Application architecture","id":"17","title":"Application architecture"},"170":{"body":"Components have three kinds of messages now: Input is the regular Msg type from the Model trait in 0.4. Output is the message type, that can be used to forward information to other components automatically (or () if you don't care about forwarding). You will find more information about initializing components in the next section. CmdOutput is the output of commands. Commands are futures that are executed in the background. They fully replace async workers. The result of this future is the CmdOutput message handled in update_cmd , similar to the regular update function. The send! macro is obsolete. Please use sender.input(msg) instead.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Senders and messages","id":"170","title":"Senders and messages"},"171":{"body":"Components are initialized in the init method of their parent. You simply call MyComponentType::builder() to get a ComponentBuilder . Then you launch the component by calling builder.launch(init_params) to receive a Connector . From the connector you can decide to automatically forward messages to another component or just detach the connector to get a Controller . The controller is the type you now store in the model of the parent component instead of creating a separate components struct. There's no Components trait necessary. For types that implement Component that don't have any widgets (such as implementers of the Worker trait), you can call detach_worker from a ComponentBuilder. This spawns the internal runtime on a separate thread and gives you a WorkerController .","breadcrumbs":"Migration guides » 0.4 to 0.5 » Initializing components","id":"171","title":"Initializing components"},"172":{"body":"SimpleComponent SimpleComponent is a simpler variant of Component that helps with the implementation of Component. Particularly, it doesn't support commands. Worker Worker is an even simpler variant of SimpleComponent that helps with the implementation of Component. Particularly, it doesn't support widgets and allows running the components update loop on a different thread by using detach_worker . This is the replacement for the previously separated RelmWorker type.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Helper traits","id":"172","title":"Helper traits"},"173":{"body":"Factories now work very similar to components. In fact, the new FactoryComponent trait that replaces FactoryPrototype is almost identical to the Component trait. Messages can now be optionally passed by using the forward_to_parent method. FactoryVec was entirely removed in favor of FactoryVecDeque. Edits to factories are now similar to Mutex and require a guard. When the guard is dropped, all changes are rendered automatically, so no render method is required anymore.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Factories","id":"173","title":"Factories"},"174":{"body":"In general, a lot of internal macros were moved to be just attributes like watch! and track! now written as #[watch] and #[track(optional_condition)]. Multiple arguments now don't need args!() but just () whereas tuples need two parenthesis (()). Wrapping widgets into Some is now also an attribute #[wrap(Some)]. Additional arguments are now passed with square brackets [] instead of parenthesis (). Cloning variables for closures is always done with square brackets [] instead of parenthesis (). Old New view! { gtk::HeaderBar { set_title_widget = Some(>k::Box) { append: group = >k::ToggleButton { set_label: watch!(model.label), connect_toggled(sender) => move |btn| { // ... }, }, } }\n} view! { gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { append: group = >k::ToggleButton { #[watch] set_label: model.label, connect_toggled[sender] => move |btn| { // ... }, }, } }\n}","breadcrumbs":"Migration guides » 0.4 to 0.5 » The view macro","id":"174","title":"The view macro"},"175":{"body":"The macro in now called #[component]. You need to use let widgets = view_output!(); in the init function to inject the code from the view macro. pre_init -> Code before view_output!(). post_init -> Code after view_output!().","breadcrumbs":"Migration guides » 0.4 to 0.5 » The widget macro","id":"175","title":"The widget macro"},"176":{"body":"Now you need to specify an application id and a generic parameter is required when calling run().","breadcrumbs":"Migration guides » 0.4 to 0.5 » RelmApp","id":"176","title":"RelmApp"},"177":{"body":"WidgetPlus::inline_css now takes &str as parameter instead of &[u8].","breadcrumbs":"Migration guides » 0.4 to 0.5 » Miscellaneous","id":"177","title":"Miscellaneous"},"178":{"body":"v0.4 v0.5 Model Component AppUpdate Component ComponentUpdate Component AsyncComponentUpdate Component MicroComponent Component MicroWidgets Component MessageHandler Component FactoryPrototype FactoryComponent Model::Msg Component::Input Model::Widgets Component::Widgets Model::Components removed Components Store a Controller for each component in your model parent_sender Forward output messages from one component to another by using Connector In case there's something missing, please let me know. You can simply open an issue on GitHub or write a message in the Matrix room .","breadcrumbs":"Migration guides » 0.4 to 0.5 » Summary","id":"178","title":"Summary"},"179":{"body":"","breadcrumbs":"Migration guides » 0.5 to 0.6 » Migration from v0.5 to v0.6","id":"179","title":"Migration from v0.5 to v0.6"},"18":{"body":"For our app, we just want to tell the computer to either increment or decrement a counter. enum AppMsg { Increment, Decrement,\n}","breadcrumbs":"Your first app » Messages","id":"18","title":"Messages"},"180":{"body":"FactoryComponent::output_to_parent_input() => FactoryComponent::forward_to_parent()","breadcrumbs":"Migration guides » 0.5 to 0.6 » Renamed methods","id":"180","title":"Renamed methods"},"181":{"body":"RelmActionGroup::add_action() now consumes the action Use RelmActionGroup::register_for_widget() and RelmActionGroup::register_for_main_application() instead of WidgetExt::insert_action_group()","breadcrumbs":"Migration guides » 0.5 to 0.6 » Actions","id":"181","title":"Actions"},"182":{"body":"","breadcrumbs":"Migration guides » 0.6 to 0.7 » Migration from v0.6 to v0.7","id":"182","title":"Migration from v0.6 to v0.7"},"183":{"body":"Switching between the Component and AsyncComponent traits has been a bit unpleasant in previous versions due to complex errors generated by the code generated by async-trait. To avoid this, the signatures of Component and AsyncComponent were unified. This means, that Component::init() and SimpleComponent::init() now take Self::Root as owned parameter instead of a reference (&Self::Root). In most places, this just means that you have to remove a &.","breadcrumbs":"Migration guides » 0.6 to 0.7 » Component changes","id":"183","title":"Component changes"},"184":{"body":"ParentInput and forward_to_parent() were removed from FactoryComponent and AsyncFactoryComponent. Instead, factories now support basically the same builder pattern as components.","breadcrumbs":"Migration guides » 0.6 to 0.7 » Factory changes","id":"184","title":"Factory changes"},"185":{"body":"Replace this: #[relm4::factory]\nimpl FactoryComponent for Counter { type ParentInput = AppMsg; fn forward_to_parent(output: Self::Output) -> Option { Some(match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }) } // ...\n} #[relm4::component]\nimpl SimpleComponent for App { // ... fn init( counter: Self::Init, root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::new(gtk::Box::default(), sender.input_sender()); // ... }\n} With this: #[relm4::component]\nimpl SimpleComponent for App { // ... fn init( counter: Self::Init, root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); // ... }\n}","breadcrumbs":"Migration guides » 0.6 to 0.7 » Example","id":"185","title":"Example"},"186":{"body":"set_global_css and set_global_css_from_file are now methods of RelmApp to prevent calling them before initializing GTK The drawing module was moved into the new abstractions module","breadcrumbs":"Migration guides » 0.6 to 0.7 » Other changes","id":"186","title":"Other changes"},"187":{"body":"Since 0.8 was released at the same day as 0.7, there are not many changes. It is worth noting though, that the async-trait crate was removed in favor of regular async traits available since Rust 1.75. This means that all manual uses of #[async_trait] for AsyncComponent or similar traits have to be removed.","breadcrumbs":"Migration guides » 0.7 to 0.8 » Migration from v0.7 to v0.8","id":"187","title":"Migration from v0.7 to v0.8"},"19":{"body":"For our counter app, the computer only needs to remember the counter value, so an u8 is all we need. struct AppModel { counter: u8,\n}","breadcrumbs":"Your first app » The model","id":"19","title":"The model"},"2":{"body":"If you find a mistake or something unclear in Relm4 or this book, let us know! Simply open up an issue or start a discussion over at GitHub or chat with us on Matrix .","breadcrumbs":"Introduction » Issues and feedback","id":"2","title":"Issues and feedback"},"20":{"body":"GTK4 offers the computer widgets that allow it to take input and to respond. Widgets are simply parts of an UI like buttons, input fields or text areas. To be able to update the widgets in our program, we can put them all into a struct. For our application, we use a window with two buttons to increase and decrease the counter and a label to display the counter value. We also need a box as a container to house our buttons and label, since a window can only have one child. In our case, we will only update the label when we increment or decrement the counter, so we don't really need to store everything inside the struct. struct AppWidgets { label: gtk::Label,\n} Although, if you want to, you can.","breadcrumbs":"Your first app » The widgets","id":"20","title":"The widgets"},"21":{"body":"The last step we need is to tell the computer how to initialize and update the widgets. All that is left to do is to implement the SimpleComponent trait for your model, which tells the computer exactly how to visualize its memory. Let's do this step by step. First, we'll have a look at the beginning of the trait impl. impl SimpleComponent for AppModel { The first thing you need to do is to define some generic types necessary to make our component work. /// The type of the messages that this component can receive. type Input = AppMsg; /// The type of the messages that this component can send. type Output = (); /// The type of data with which this component will be initialized. type Init = u8; /// The root GTK widget that this component will create. type Root = gtk::Window; /// A data structure that contains the widgets that you will need to update. type Widgets = AppWidgets; The types defined in the trait tell our component how it should communicate with other components and what type of widgets should be produced. The Root type is the outermost widget of the app. Components can choose this type freely, but the main component must use a Window. Since the window widget is our root widget, we are going to create it in the init_root function. fn init_root() -> Self::Root { gtk::Window::builder() .title(\"Simple app\") .default_width(300) .default_height(100) .build() } Next up, we want to initialize our UI and the model. Don't worry about the amount of manual code you need for handling widgets. In the next chapter, we'll see how this can be done easier. All of these widgets will be created in the init function. We get our Root window and the Init variables to create our widgets with. /// Initialize the UI and model. fn init( counter: Self::Init, window: Self::Root, sender: ComponentSender, ) -> relm4::ComponentParts { let model = AppModel { counter }; let vbox = gtk::Box::builder() .orientation(gtk::Orientation::Vertical) .spacing(5) .build(); let inc_button = gtk::Button::with_label(\"Increment\"); let dec_button = gtk::Button::with_label(\"Decrement\"); let label = gtk::Label::new(Some(&format!(\"Counter: {}\", model.counter))); label.set_margin_all(5); window.set_child(Some(&vbox)); vbox.set_margin_all(5); vbox.append(&inc_button); vbox.append(&dec_button); vbox.append(&label); inc_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Increment); } )); dec_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Decrement); } )); let widgets = AppWidgets { label }; ComponentParts { model, widgets } } First, we initialize each of our widgets, mostly by using builder patterns. Then we connect the widgets so that GTK4 knows how they are related to each other. The buttons and the label are added as children of the box, and the box is added as the child of the window. Next, we connect the \"clicked\" event for both buttons and send a message from the closures to the computer. To do this, we only need to move a cloned sender into the closures and send the message. Now every time we click our buttons, a message will be sent to update our counter! Of course, the computer needs to do more than just remembering things, it also needs to process information. Here, both the model and message types come into play. The update function of the SimpleComponent trait tells the computer how to process messages and how to update its memory. fn update(&mut self, message: Self::Input, _sender: ComponentSender) { match message { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } } wrapping_add(1) and wrapping_sub(1) are like +1 and -1, but don't panic on overflows. We see that the update function receives a message and updates the model according to your instructions. Still our UI will not update when the counter is changed. To do this, we need to implement the update_view function that modifies the UI according to the changes in the model. /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, _sender: ComponentSender) { widgets .label .set_label(&format!(\"Counter: {}\", self.counter)); }","breadcrumbs":"Your first app » Implement a component with SimpleComponent.","id":"21","title":"Implement a component with SimpleComponent."},"22":{"body":"The last step is to run the app we just wrote. To do so, we just need to initialize our model and pass it into RelmApp::new(). fn main() { let app = RelmApp::new(\"relm4.test.simple_manual\"); app.run::(0);\n} 🎉 Congratulations! You just wrote your first app with Relm4! 🎉","breadcrumbs":"Your first app » Running the App","id":"22","title":"Running the App"},"23":{"body":"Let's summarize what we learned in this chapter. A Relm4 application has three important types: The model type that stores the application state, the memory of our app. The message type that describes which information can be sent to update the model. The widgets type that stores our widgets. Also, there are two important functions: update receives a message and updates the model accordingly. update_view receives the updated model and updates the widgets accordingly. The app does all those things in a loop. It waits for messages and once a message is received, it runs update and then view. relm update loop Relm4 separates the data and the UI. The UI never knows which message was sent, but can only read the model. This might seem like a limitation, but it helps you to create maintainable, stable and consistent applications.","breadcrumbs":"Your first app » Summary","id":"23","title":"Summary"},"24":{"body":"I hope this chapter made everything clear for you :) If you found a mistake or there was something unclear, please open an issue here . As you have seen, initializing the UI was by far the largest part of our app, with roughly one half of the total code. In the next chapter, we will have a look at the relm4-macros crate, which provides a macro that helps us reduce the amount of code we need to implement the Widgets trait. As you might have noticed, storing inc_button, dec_button and vbox in our widgets struct is not necessary because GTK will keep them alive automatically. Therefore, we can remove them from AppWidgets to avoid compiler warnings.","breadcrumbs":"Your first app » Conclusion","id":"24","title":"Conclusion"},"25":{"body":"Let's review our code in one piece to see how all these parts work together: use gtk::glib::clone;\nuse gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; struct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} struct AppWidgets { label: gtk::Label,\n} impl SimpleComponent for AppModel { /// The type of the messages that this component can receive. type Input = AppMsg; /// The type of the messages that this component can send. type Output = (); /// The type of data with which this component will be initialized. type Init = u8; /// The root GTK widget that this component will create. type Root = gtk::Window; /// A data structure that contains the widgets that you will need to update. type Widgets = AppWidgets; fn init_root() -> Self::Root { gtk::Window::builder() .title(\"Simple app\") .default_width(300) .default_height(100) .build() } /// Initialize the UI and model. fn init( counter: Self::Init, window: Self::Root, sender: ComponentSender, ) -> relm4::ComponentParts { let model = AppModel { counter }; let vbox = gtk::Box::builder() .orientation(gtk::Orientation::Vertical) .spacing(5) .build(); let inc_button = gtk::Button::with_label(\"Increment\"); let dec_button = gtk::Button::with_label(\"Decrement\"); let label = gtk::Label::new(Some(&format!(\"Counter: {}\", model.counter))); label.set_margin_all(5); window.set_child(Some(&vbox)); vbox.set_margin_all(5); vbox.append(&inc_button); vbox.append(&dec_button); vbox.append(&label); inc_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Increment); } )); dec_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Decrement); } )); let widgets = AppWidgets { label }; ComponentParts { model, widgets } } fn update(&mut self, message: Self::Input, _sender: ComponentSender) { match message { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } } /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, _sender: ComponentSender) { widgets .label .set_label(&format!(\"Counter: {}\", self.counter)); }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple_manual\"); app.run::(0);\n}","breadcrumbs":"Your first app » The complete code","id":"25","title":"The complete code"},"26":{"body":"To simplify the implementation of the Component trait, let's use the relm4-macros crate! App screenshot dark The app will look and behave identically to our first app from the previous chapter. Only the implementation is different. The app we will write in this chapter is also available here . Run cargo run --example simple from the example directory if you want to see the code in action.","breadcrumbs":"The component macro » The component macro","id":"26","title":"The component macro"},"27":{"body":"The component macro will simplify creating the Widgets struct. The update code remains untouched, so we can reuse most of the code from the previous chapter. Let's have a look at how to define a component with the macro and go through the code step by step: #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => AppMsg::Increment }, gtk::Button::with_label(\"Decrement\") { connect_clicked => AppMsg::Decrement }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { counter }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} The associated types don't change. We still have to define the model, the input parameters, and the message types. However, the Widgets type is never explicitly defined in the code, but generated by the macro. And then... wait, where do we define the Root type? Actually, the macro knows that the outermost widget becomes automatically the root widget. Next up - the heart of the component macro - the nested view! macro. Here, we can easily define widgets and assign properties to them.","breadcrumbs":"The component macro » What's different","id":"27","title":"What's different"},"28":{"body":"As you see, we start with the gtk::Window which is our root. Then we open up brackets and assign properties to the window. There's not much magic here but actually set_title is a method provided by gtk4-rs. So technically, the macro creates code like this: window.set_title(Some(\"Simple app\"));","breadcrumbs":"The component macro » Properties","id":"28","title":"Properties"},"29":{"body":"We assign a child to the window by nesting another widget inside it. Widgets may be nested indefinitely: gtk::Box { Sometimes we want to use a constructor function to initialize our widgets. For the second button we used the gtk::Button::with_label function. This function returns a new button with the \"Decrement\" label already set, so we don't have to call set_label afterwards. gtk::Button::with_label(\"Decrement\") {","breadcrumbs":"The component macro » Widgets","id":"29","title":"Widgets"},"3":{"body":"All platforms supported by GTK4 are available for Relm4 as well: Linux Windows macOS","breadcrumbs":"Introduction » Platform support","id":"3","title":"Platform support"},"30":{"body":"To connect events, we use this general syntax: method_name[cloned_var1, cloned_var2, ...] => move |args, ...| { code... } Again, there's no magic. The macro will simply assign a closure to a method. Because closures often need to capture local variables that don't implement the Copy trait, we need to clone these variables. Therefore, we can list the variables we want to clone in the square brackets after the method name. For simple cases there's even a shorter syntax for just sending one input message that works with most event handlers. So instead of this: method_name[sender] => move |_| { sender.input(Msg); }, You can simply write this: method_name => Msg, This is what we used in this example: connect_clicked => AppMsg::Decrement","breadcrumbs":"The component macro » Events","id":"30","title":"Events"},"31":{"body":"The last special syntax of the component macro we'll cover here is the #[watch] attribute. It's just like the normal initialization except that it also updates the property in the view function. Without it, the counter label would never be updated. #[watch] set_label: &format!(\"Counter: {}\", model.counter), The full reference for the syntax of the widget macro can be found here .","breadcrumbs":"The component macro » UI updates","id":"31","title":"UI updates"},"32":{"body":"After we've defined our widgets, we need to construct them. This is done with the view_output! macro, which returns a fully-initialized instance of our Widgets struct. // Insert the macro code generation here let widgets = view_output!();","breadcrumbs":"The component macro » Constructing the Widgets","id":"32","title":"Constructing the Widgets"},"33":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; struct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => AppMsg::Increment }, gtk::Button::with_label(\"Decrement\") { connect_clicked => AppMsg::Decrement }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { counter }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.run::(0);\n}","breadcrumbs":"The component macro » The complete code","id":"33","title":"The complete code"},"34":{"body":"This chapter comes quite early in the book because it is quite helpful for beginners, but is certainly also useful for more advanced users. It contains the most common tips and tricks you will need while using Relm4. In case you have a problem, you can simply return to this chapter and might find something helpful very quickly. We recommend to have at least a short look at this chapter, but there's no crucial information in here so you can already continue with the next chapter if you want.","breadcrumbs":"Tips and tricks » Tips and tricks","id":"34","title":"Tips and tricks"},"35":{"body":"Some features of the view macro are explained very late in the book and are easy to overlook. Here's a short summery of those features, which you might find useful. If you found something interesting, you can look for more details in the macro reference chapter . Initialization using a builder pattern Pass additional arguments Pass Some(widget) if and match statements to dynamically select visible widgets Use the return value of assignments Optional and iterative assignments","breadcrumbs":"Tips and tricks » Advanced view macro features","id":"35","title":"Advanced view macro features"},"36":{"body":"The Elm architecture itself is pretty simple, but as your application grows, small oversights can sometimes cause large problems.","breadcrumbs":"Tips and tricks » Common pitfalls","id":"36","title":"Common pitfalls"},"37":{"body":"Relm4 components use a simple update loop: Receive a message, update the model and then update the view. Usually, this works as intended, but if updating the view somehow creates a new, identical message, your code will be stuck in an infinite loop and your app will freeze. To prevent this, the view macro has the block_signal attribute which is explained here .","breadcrumbs":"Tips and tricks » Message recursion","id":"37","title":"Message recursion"},"38":{"body":"Sending messages in Relm4 can lead to panics under certain circumstances. The most common mistake is dropping a Controller. This will cause the entire runtime of the component to be dropped together with all it's receivers. Sending message to this component afterwards will not work because the receiving side is not available anymore. To avoid this problem, you can either store the Controller in the model of its parent components or call detach_runtime() . Also note that sending output messages will not work if you detach a component, again because this means that no receiver is available. In this case it might be desired to ignore sending errors.","breadcrumbs":"Tips and tricks » Sending errors","id":"38","title":"Sending errors"},"39":{"body":"Relm4's macros try to make your life easier, but sometimes the created error messages are rather confusing. This is not something that can be fully fixed in the macro itself due to the limitations of the Rust programming language, but we try to summarize some common errors in this section.","breadcrumbs":"Tips and tricks » Common compiler errors","id":"39","title":"Common compiler errors"},"4":{"body":"If you prefer learning directly from examples, we got you covered! Many code examples in this book and many other examples can also be found in the git-repository . Whenever an example is discussed in the book, the introduction will mention the name of the example and provide a link to it. To setup the examples run git clone https://github.com/Relm4/Relm4.git And to run an example, simply type cargo run --example NAME To get a list of all examples, run cargo run --example","breadcrumbs":"Introduction » Examples","id":"4","title":"Examples"},"40":{"body":"The #[component] and #[factory] macros will automatically generate a struct for storing your widgets. This struct must have the same visibility as the model because it is associated with the Component or FactoryComponent implementation of the model. To tell the macro to generate a public widgets type, you can simply use #[component(pub)] or #[factory(pub)].","breadcrumbs":"Tips and tricks » Private type in public interface","id":"40","title":"Private type in public interface"},"41":{"body":"Relm4 implements the ContainerExt trait for many widgets that allows you simply nest widgets in the view macro. gtk::Box { gtk::Label { // ... }\n} Unfortunately, this trait can't always be implemented because some widgets don't have a obvious method for adding children. For gtk::Box it is relatively simple and just uses the append() method internally. However, gtk::Header has three possible locations to add children: start, center and end. Implementing RelmContainerExt for such a type is not possible because it's not clear what the default behavior should be. Other types such as gtk::Grid even need more information to place children. In this case, you can simply pass the method name before declaring the child widget. Also, we often need a reference (&) because most methods in gtk-rs take references. gtk::HeaderBar { pack_start = >k::Label { // ... }\n},\ngtk::Grid { attach[0, 0, 1, 1] = >k::Label { // ... }\n}","breadcrumbs":"Tips and tricks » Method container_add is missing","id":"41","title":"Method container_add is missing"},"42":{"body":"The structure and design of most gtk-rs crates is often a bit different from most other Rust crates. Because GTK is based on GObject, a C library that implements object-oriented programming, the gtk-rs developers had to come up with some clever ideas to integrate the C code into Rust.","breadcrumbs":"Tips and tricks » Working with gtk-rs","id":"42","title":"Working with gtk-rs"},"43":{"body":"Looking at the documentation of gtk::Box makes it look like this type has just a new() and a builder() method. However, this is not quite true as the gtk::Box type comes with plenty of methods. To find those methods, you have to look at \"implements\" section , which contains a list of traits implemented by this type. In particular, BoxExt gives you a lot of useful methods. Another very important trait in the list is WidgetExt which is implemented by all widgets. In the same fashion, you can find the available methods of other widgets.","breadcrumbs":"Tips and tricks » Reading docs","id":"43","title":"Reading docs"},"44":{"body":"GTK has a built-in inspector that has similar features as browser developer tools. You can use them to look at individual widgets, modify their properties, apply custom CSS and much more. In particular, it is very useful for finding the best values before integrating them into your code. To use the inspector, you only need to press Ctrl+Shift+D while you have a GTK application opened (this not just works for Relm4, but all GTK based apps). You should see an overview over all your widgets, which you can expand row by row. Yet, to select widgets, it is more convenient to use the button in the top left which allows you to select a widget by clicking on your app. Once you have selected a widget, you can modify its properties. You can also use the CSS tab to apply custom CSS to your application. Once you entered your rules, make sure the pause button is not selected. For example, you could try setting a border for every widget: * { border: 1px solid red;\n} Widget overview Widget properties Widget overview Widget properties","breadcrumbs":"Tips and tricks » Using the inspector","id":"44","title":"Using the inspector"},"45":{"body":"Both GTK4, libadwaita and ASHPD (a library for portals) have demo applications. Those are very useful when searching for widgets and other features, especially when combined with the inspector. Setup gnome-nightly flatpak remote: flatpak remote-add --if-not-exists gnome-nightly https://nightly.gnome.org/gnome-nightly.flatpakrepo Install the GTK4 demo: flatpak install gnome-nightly org.gtk.Demo4 Install the Adwaita demo: flatpak install gnome-nightly org.gnome.Adwaita1.Demo Install the ASHPD demo: flatpak install flathub com.belmoussaoui.ashpd.demo","breadcrumbs":"Tips and tricks » Demo applications","id":"45","title":"Demo applications"},"46":{"body":"Relm4 also offers a few extra crates and projects to make your life easier: relm4-template : A template for flatpak apps that saves a lot of time for setting up new projects relm4-icons : Over 2000 icons, ready to use for your app relm4-components : A collection of handy components","breadcrumbs":"Tips and tricks » Our ecosystem","id":"46","title":"Our ecosystem"},"47":{"body":"In case you didn't find the answer to your question in this book, feel free to ask it in our matrix chat or in a GitHub discussion (you can find all links in our README ). We are always happy to help you! After all, this chapter was assembled from the most common questions we got from either GitHub or the matrix chat.","breadcrumbs":"Tips and tricks » Guaranteed helpful: Our matrix chat","id":"47","title":"Guaranteed helpful: Our matrix chat"},"48":{"body":"Relm4 follows the Elm programming model which means that data and widgets are separated. At first glance this might cause a problem. Larger applications need to efficiently update their widgets because rebuilding the whole UI for every update is not an option. But since data and widgets are separated, how do we know which UI elements need to be updated? Let's have a look at the following example: Imagine you have an app with 1000 counters and you only increment the first counter. The model receives the increment message for the first counter and increments it. Now the view function gets the updated model with 1000 counters and… well, has no idea what has changed! So instead of one UI update we need to do 1000 because we don't know which of our counters was modified. There are two concepts in Relm4 to avoid unnecessary UI updates: Trackers identify modifications of fields in structs to only trigger updates to the affected UI elements. Factories track changes in data structures similar to std::collections in order to perform also minimal UI updates. They are used to generate multiple similar widgets, e.g. a row of buttons, from a data collection. Both concepts are explained in the following chapters.","breadcrumbs":"Efficient UI updates » Efficient UI updates","id":"48","title":"Efficient UI updates"},"49":{"body":"A tracker in this context simply means a data type that's able to track changes to itself. For example, if we increment the counter of the model we used for our first app, the model might tell us later that the counter changed during the last update function. Relm4 does not promote any implementation of a tracker. You're free to use any implementation you like, you can even implement a tracker yourself. In this example however, we'll use the tracker crate that provides a simple macro that implements a tracker for us automatically. Using this technique, we will implement a small program which displays two randomly picked icons controlled by two buttons: App screenshot When pressing a button, the icon above it will change. The background of the application will become green when the two icons are identical: App screenshot with with equal icons","breadcrumbs":"Efficient UI updates » Tracker » Tracker","id":"49","title":"Tracker"},"5":{"body":"As a sneak peak here are screenshots of some examples. Light Theme Dark Theme Pop Over light Pop Over dark Factory-Advanced light Factory-Advanced dark","breadcrumbs":"Introduction » Screenshots","id":"5","title":"Screenshots"},"50":{"body":"The tracker::track macro implements the following methods for your struct fields: get_{field_name}() Get an immutable reference to your field. get_mut_{field_name}() Get a mutable reference to your field. Assumes the field will be modified and marks it as changed. set_{field_name}(value) Get a mutable reference to your field. Marks the field as changed only if the new value isn't equal with the previous value. update_{field_name}(fn) Update your mutable field with a function or a closure. Assumes the field will be modified and marks it as changed. To check for changes you can call {struct_var_name}.changed(StructName::{field_name}()) and it will return a bool indication whether the field was updated. To reset all previous changes, you can call {struct_var_name}.reset().","breadcrumbs":"Efficient UI updates » Tracker » The tracker crate","id":"50","title":"The tracker crate"},"51":{"body":"First we have to add the tracker library to Cargo.toml: tracker = \"0.2.2\" Now let's have a look at a small example. #[tracker::track]\nstruct Test { x: u8, y: u64,\n} fn main() { let mut t = Test { x: 0, y: 0, // the macro generates a new variable called // \"tracker\" which stores the changes tracker: 0, }; t.set_x(42); // let's check whether the change was detected assert!(t.changed(Test::x())); // reset t so we don't track old changes t.reset(); t.set_x(42); // same value, so no change assert!(!t.changed(Test::x()));\n} So in short, the tracker::track macro provides various getters and setters that will mark struct fields as changed. You also get a method that checks for changes and a method to reset the changes.","breadcrumbs":"Efficient UI updates » Tracker » A tracker example","id":"51","title":"A tracker example"},"52":{"body":"Let's build a simple app that shows two random icons and allows the user to set either of them to a new random icon. As a bonus, we want to show a fancy background color if both icons are the same. The app we will write in this chapter is also available here . Run cargo run --example tracker from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » Tracker » Using trackers in Relm4 apps","id":"52","title":"Using trackers in Relm4 apps"},"53":{"body":"Before we can select random icons, we need to quickly implement a function that will return us random image names available in the default GTK icon theme. const ICON_LIST: &[&str] = &[ \"bookmark-new-symbolic\", \"edit-copy-symbolic\", \"edit-cut-symbolic\", \"edit-find-symbolic\", \"starred-symbolic\", \"system-run-symbolic\", \"emoji-objects-symbolic\", \"emoji-nature-symbolic\", \"display-brightness-symbolic\",\n]; fn random_icon_name() -> &'static str { ICON_LIST .iter() .choose(&mut rand::thread_rng()) .expect(\"Could not choose a random icon\")\n}","breadcrumbs":"Efficient UI updates » Tracker » The icons","id":"53","title":"The icons"},"54":{"body":"For our model we only need to store the two icon names and whether both of them are identical. #[tracker::track]\nstruct AppModel { first_icon: &'static str, second_icon: &'static str, identical: bool,\n} The message type is also pretty simple: we just want to update one of the icons. #[derive(Debug)]\nenum AppInput { UpdateFirst, UpdateSecond,\n} There are a few notable things for the Component's update implementation. First, we call self.reset() at the top of the function body. This ensures that the tracker will be reset so we don't track old changes. Also, we use setters instead of assignments because we want to track these changes. Yet, you could still use the assignment operator if you want to apply changes without notifying the tracker. fn update(&mut self, message: Self::Input, _sender: ComponentSender) { // reset tracker value of the model self.reset(); match message { AppInput::UpdateFirst => { self.set_first_icon(random_icon_name()); } AppInput::UpdateSecond => { self.set_second_icon(random_icon_name()); } } self.set_identical(self.first_icon == self.second_icon); }","breadcrumbs":"Efficient UI updates » Tracker » The model","id":"54","title":"The model"},"55":{"body":"Now we reached the interesting part of the code where we can actually make use of the tracker. Let's have a look at the complete view! macro call: view! { #[root] gtk::ApplicationWindow { #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, set_margin_all: 10, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateFirst) } } }, append = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::second_icon())\"] set_icon_name: Some(model.second_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateSecond) } } }, } } }","breadcrumbs":"Efficient UI updates » Tracker » The view","id":"55","title":"The view"},"56":{"body":"In this example, we need some additional code in fn main() to add custom CSS that sets the background color for elements with class name \"identical\". Later, we just need to assign the \"identical\" class name to a widget to make it match the CSS selector. fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.set_global_css(\".identical { background: #00ad5c; }\"); app.run::(());\n}","breadcrumbs":"Efficient UI updates » Tracker » The main function","id":"56","title":"The main function"},"57":{"body":"The #[track] attribute is applied to method invocations in our view code. It allows us to add a condition to the update: if the condition is true, the method will be called, otherwise, it will be skipped. The attribute syntax looks like this: #[track = \"\"] Let's have a look at its first appearance: #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), The set_class_active method is used to either activate or disable a CSS class. It takes two parameters, the first is the class itself and the second is a boolean which specifies if the class should be added (true) or removed (false). The value of the #[track] attribute is parsed as a boolean expression. This expression will be used as a condition to check whether something has changed. If this condition is true, the set_class_active method will be called with the parameters it guards. The macro expansion for method calls annotated with the #[track] attribute look roughly like this: if model.changed(AppModel::identical()) { self.main_window.set_class_active(\"identical\", model.identical);\n} That's all. It's pretty simple, actually. We just use a condition that allows us to update our widgets only when needed. The second #[track] attribute works similarly: #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), Using a tracker as debugging helper Since the #[track] attribute parses expressions, you can use the following syntax to debug your trackers: #[track = \"{ println!(\"Update widget\"); argument }\"]","breadcrumbs":"Efficient UI updates » Tracker » The #[track] attribute","id":"57","title":"The #[track] attribute"},"58":{"body":"There's one last thing to point out. When initializing our model, we need to initialize the tracker field as well. The initial value doesn't really matter because we call reset() in the update function anyway, but usually 0 is used. let model = AppModel { first_icon: random_icon_name(), second_icon: random_icon_name(), identical: false, tracker: 0, };","breadcrumbs":"Efficient UI updates » Tracker » Initializing the model","id":"58","title":"Initializing the model"},"59":{"body":"Let's look at our code again in one piece to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, OrientableExt};\nuse rand::prelude::IteratorRandom;\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; const ICON_LIST: &[&str] = &[ \"bookmark-new-symbolic\", \"edit-copy-symbolic\", \"edit-cut-symbolic\", \"edit-find-symbolic\", \"starred-symbolic\", \"system-run-symbolic\", \"emoji-objects-symbolic\", \"emoji-nature-symbolic\", \"display-brightness-symbolic\",\n]; fn random_icon_name() -> &'static str { ICON_LIST .iter() .choose(&mut rand::thread_rng()) .expect(\"Could not choose a random icon\")\n} // The track proc macro allows to easily track changes to different\n// fields of the model\n#[tracker::track]\nstruct AppModel { first_icon: &'static str, second_icon: &'static str, identical: bool,\n} #[derive(Debug)]\nenum AppInput { UpdateFirst, UpdateSecond,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = AppInput; type Output = (); view! { #[root] gtk::ApplicationWindow { #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, set_margin_all: 10, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateFirst) } } }, append = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::second_icon())\"] set_icon_name: Some(model.second_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateSecond) } } }, } } } // Initialize the UI. fn init( _params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { first_icon: random_icon_name(), second_icon: random_icon_name(), identical: false, tracker: 0, }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, message: Self::Input, _sender: ComponentSender) { // reset tracker value of the model self.reset(); match message { AppInput::UpdateFirst => { self.set_first_icon(random_icon_name()); } AppInput::UpdateSecond => { self.set_second_icon(random_icon_name()); } } self.set_identical(self.first_icon == self.second_icon); }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.set_global_css(\".identical { background: #00ad5c; }\"); app.run::(());\n}","breadcrumbs":"Efficient UI updates » Tracker » The complete code","id":"59","title":"The complete code"},"6":{"body":"We want to thank all contributors of relm especially antoyo for building relm that inspired much of the work on Relm4. Also, we want to thank all contributors of gtk-rs that put a lot of effort into the project for creating outstanding Rust bindings for GTK4. We want to thank tronta , Eduardo Flores , Andy Russell , Aaron Erhardt for contributing a lot of improvements to this book.","breadcrumbs":"Introduction » Special thanks","id":"6","title":"Special thanks"},"60":{"body":"Factories define how to generate widgets from data collections. GTK also has factories, yet Relm4 uses its own factory implementation which is much easier to use in regular Rust code. App screenshot dark This app will have a dynamic number of counters. Also, the counters can be moved up and down by the user.","breadcrumbs":"Efficient UI updates » Factories » Factory","id":"60","title":"Factory"},"61":{"body":"Factories allow you to visualize data in a natural way. If you wanted to store a set of counter values in regular Rust code, you'd probably use Vec. However, you can't simply generate widgets from a Vec. This is where factories are really useful. Custom collection types like FactoryVecDeque allow you to work with collections of data almost as comfortable as if they were stored in a Vec. At the same time, factories allow you to automatically visualize the data with widgets. Additionally, factories are very efficient by reducing the amount of UI updates to a minimum. The app we will write in this chapter is also available here . Run cargo run --example factory from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » Factories » Factories in Relm4","id":"61","title":"Factories in Relm4"},"62":{"body":"First, we define the struct Counter that just stores the value of a single counter. Later, we will use a FactoryVecDeque to store our counters. #[derive(Debug)]\nstruct Counter { value: u8,\n}","breadcrumbs":"Efficient UI updates » Factories » The model","id":"62","title":"The model"},"63":{"body":"Each counter should be able to increment and decrement. #[derive(Debug)]\nenum CounterMsg { Increment, Decrement,\n}","breadcrumbs":"Efficient UI updates » Factories » The input message type","id":"63","title":"The input message type"},"64":{"body":"A neat feature of factories is that each element can easily forward their output messages to the input of their parent component. For example, this is necessary for modifications that require access to the whole FactoryVecDeque, like moving an element to a new position. Therefore, these actions are covered by the output type. The actions we want to perform \"from outside\" are Move a counter up Move a counter down Move a counter to the first position Accordingly, our message type looks like this: #[derive(Debug)]\nenum CounterOutput { SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} You might wonder why DynamicIndex is used here. First, the parent component needs to know which element should be moved, which is defined by the index. Further, elements can move in the FactoryVecDeque. If we used usize as index instead, it could happen that the index points to another element by the time it is processed.","breadcrumbs":"Efficient UI updates » Factories » The output message type","id":"64","title":"The output message type"},"65":{"body":"Factories use the FactoryComponent trait which is very similar to regular components with some minor adjustments. For example, FactoryComponent needs the #[relm4::factory] attribute macro and a few more associated types in the trait implementation. #[relm4::factory]\nimpl FactoryComponent for Counter { type Init = u8; type Input = CounterMsg; type Output = CounterOutput; type CommandOutput = (); type ParentWidget = gtk::Box; Let's look at the associated types one by one: Init : The data required to initialize Counter, in this case the initial counter value. Input : The input message type. Output : The output message type. CommandOutput : The command output message type, we don't need it here. ParentWidget : The container widget used to store the widgets of the factory, for example gtk::Box.","breadcrumbs":"Efficient UI updates » Factories » The factory implementation","id":"65","title":"The factory implementation"},"66":{"body":"The widget creation works as usual with our trusty view macro. The only difference is that we use self to refer to the model due to differences in the FactoryComponent trait. view! { #[root] gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, #[name(label)] gtk::Label { #[watch] set_label: &self.value.to_string(), set_width_chars: 3, }, #[name(add_button)] gtk::Button { set_label: \"+\", connect_clicked => CounterMsg::Increment, }, #[name(remove_button)] gtk::Button { set_label: \"-\", connect_clicked => CounterMsg::Decrement, }, #[name(move_up_button)] gtk::Button { set_label: \"Up\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveUp(index.clone())).unwrap(); } }, #[name(move_down_button)] gtk::Button { set_label: \"Down\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveDown(index.clone())).unwrap(); } }, #[name(to_front_button)] gtk::Button { set_label: \"To Start\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::SendFront(index.clone())).unwrap(); } } } }","breadcrumbs":"Efficient UI updates » Factories » Creating the widget","id":"66","title":"Creating the widget"},"67":{"body":"FactoryComponent has separate functions for initializing the model and the widgets. This means, that we are a bit less flexible, but don't need view_output!() here. Also, we just need to implement the init_model function because init_widgets is already implemented by the macro. fn init_model(value: Self::Init, _index: &DynamicIndex, _sender: FactorySender) -> Self { Self { value } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the model","id":"67","title":"Initializing the model"},"68":{"body":"Now, we have implemented the FactoryComponent type for the elements in our factory. The only thing left to do is to write our main component to complete our app.","breadcrumbs":"Efficient UI updates » Factories » The main component","id":"68","title":"The main component"},"69":{"body":"For the main component we implement the familiar SimpleComponent trait. First we define the model and the input message type and then start the trait implementation. struct App { created_widgets: u8, counters: FactoryVecDeque,\n} #[derive(Debug)]\nenum AppMsg { AddCounter, RemoveCounter, SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::component]\nimpl SimpleComponent for App { type Init = u8; type Input = AppMsg; type Output = ();","breadcrumbs":"Efficient UI updates » Factories » The component types","id":"69","title":"The component types"},"7":{"body":"Before we start building our app, we need to understand the basic concepts of Relm4. If you have experience with GTK and Rust, you will probably breeze through this section, but if you don't, this section is for you. We will explain in detail how Relm4 works and how to use it. After this section, we will be building a simple counter app.","breadcrumbs":"Basic concepts » Basic concepts","id":"7","title":"Basic concepts"},"70":{"body":"We skip the view macro for a moment and look at the init method. You see that we are initializing the FactoryVecDeque using a builder pattern. First, we call FactoryVecDeque::builder() to create the builder and use launch() to set the root widget of the factory. This widget will store all the widgets created by the factory. Then, we use the forward() method to pass all output messages of our factory (with type CounterOutput) to the input of our component (with type AppMsg). The last trick we have up our sleeves is to define a local variable counter_box that is a reference to the container widget of our factory. We'll use it in the view macro in the next section. // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); let model = App { created_widgets: counter, counters, }; let counter_box = model.counters.widget(); let widgets = view_output!(); ComponentParts { model, widgets } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the factory","id":"70","title":"Initializing the factory"},"71":{"body":"The familiar view macro comes into play again. Most things should look familiar, but this time we use a #[local_ref] attribute for the last widget to use the local variable we defined in the previous section. This trick allows us to initialize the model with its FactoryVecDeque before the widgets, which is more convenient in most cases. view! { gtk::Window { set_title: Some(\"Factory example\"), set_default_size: (300, 100), gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Add counter\", connect_clicked => AppMsg::AddCounter, }, gtk::Button { set_label: \"Remove counter\", connect_clicked => AppMsg::RemoveCounter, }, #[local_ref] counter_box -> gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, } } } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the widgets","id":"71","title":"Initializing the widgets"},"72":{"body":"This time the main update function has actually quite a bit to do. The code should be quite readable if you worked with Vec or VecDeque before. One thing stands out though: We see a lot of calls to guard(). In fact, all mutating methods of FactoryVecDeque need an RAII-guard. This is similar to a MutexGuard you get from locking a mutex. The reason for this is simple. As long as the guard is alive, we can perform multiple operations. Once we're done, we just drop the guard (or rather leave the current scope) and this will cause the factory to update its widgets automatically. The neat thing: You can never forget to render changes, and the update algorithm can optimize widget updates for efficiency. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::AddCounter => { self.counters.guard().push_back(self.created_widgets); self.created_widgets = self.created_widgets.wrapping_add(1); } AppMsg::RemoveCounter => { self.counters.guard().pop_back(); } AppMsg::SendFront(index) => { self.counters.guard().move_front(index.current_index()); } AppMsg::MoveDown(index) => { let index = index.current_index(); let new_index = index + 1; // Already at the end? if new_index < self.counters.len() { self.counters.guard().move_to(index, new_index); } } AppMsg::MoveUp(index) => { let index = index.current_index(); // Already at the start? if index != 0 { self.counters.guard().move_to(index, index - 1); } } } }","breadcrumbs":"Efficient UI updates » Factories » The main update function","id":"72","title":"The main update function"},"73":{"body":"Awesome, we almost made it! We only need to define the main function to run our application. fn main() { let app = RelmApp::new(\"relm4.example.factory\"); app.run::(0);\n}","breadcrumbs":"Efficient UI updates » Factories » The main function","id":"73","title":"The main function"},"74":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::factory::{DynamicIndex, FactoryComponent, FactorySender, FactoryVecDeque};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; #[derive(Debug)]\nstruct Counter { value: u8,\n} #[derive(Debug)]\nenum CounterMsg { Increment, Decrement,\n} #[derive(Debug)]\nenum CounterOutput { SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::factory]\nimpl FactoryComponent for Counter { type Init = u8; type Input = CounterMsg; type Output = CounterOutput; type CommandOutput = (); type ParentWidget = gtk::Box; view! { #[root] gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, #[name(label)] gtk::Label { #[watch] set_label: &self.value.to_string(), set_width_chars: 3, }, #[name(add_button)] gtk::Button { set_label: \"+\", connect_clicked => CounterMsg::Increment, }, #[name(remove_button)] gtk::Button { set_label: \"-\", connect_clicked => CounterMsg::Decrement, }, #[name(move_up_button)] gtk::Button { set_label: \"Up\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveUp(index.clone())).unwrap(); } }, #[name(move_down_button)] gtk::Button { set_label: \"Down\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveDown(index.clone())).unwrap(); } }, #[name(to_front_button)] gtk::Button { set_label: \"To Start\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::SendFront(index.clone())).unwrap(); } } } } fn init_model(value: Self::Init, _index: &DynamicIndex, _sender: FactorySender) -> Self { Self { value } } fn update(&mut self, msg: Self::Input, _sender: FactorySender) { match msg { CounterMsg::Increment => { self.value = self.value.wrapping_add(1); } CounterMsg::Decrement => { self.value = self.value.wrapping_sub(1); } } }\n} struct App { created_widgets: u8, counters: FactoryVecDeque,\n} #[derive(Debug)]\nenum AppMsg { AddCounter, RemoveCounter, SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::component]\nimpl SimpleComponent for App { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Factory example\"), set_default_size: (300, 100), gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Add counter\", connect_clicked => AppMsg::AddCounter, }, gtk::Button { set_label: \"Remove counter\", connect_clicked => AppMsg::RemoveCounter, }, #[local_ref] counter_box -> gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); let model = App { created_widgets: counter, counters, }; let counter_box = model.counters.widget(); let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::AddCounter => { self.counters.guard().push_back(self.created_widgets); self.created_widgets = self.created_widgets.wrapping_add(1); } AppMsg::RemoveCounter => { self.counters.guard().pop_back(); } AppMsg::SendFront(index) => { self.counters.guard().move_front(index.current_index()); } AppMsg::MoveDown(index) => { let index = index.current_index(); let new_index = index + 1; // Already at the end? if new_index < self.counters.len() { self.counters.guard().move_to(index, new_index); } } AppMsg::MoveUp(index) => { let index = index.current_index(); // Already at the start? if index != 0 { self.counters.guard().move_to(index, index - 1); } } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.factory\"); app.run::(0);\n}","breadcrumbs":"Efficient UI updates » Factories » The complete code","id":"74","title":"The complete code"},"75":{"body":"Most widgets such as gtk::Box don't use the position function because they are one-dimensional and place widgets relative to each other. However, a few widgets such as gtk::Grid use fixed positions and need the position function to work inside a factory. The task of the position function is mainly to map the index to a certain position/area (x, y, width and height) of a factory widget within the parent widget (view). The code we will use in this chapter is based on the grid_factory example here . Run cargo run --example grid_factory from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » The position function » The position function","id":"75","title":"The position function"},"76":{"body":"Let's take a grid as an example. For a grid, there are many possibilities to place your widgets. You can, for example, place three, four or five widgets per row or you could place a certain amount of widgets per column. You can even create patterns like a chess grid if you want to. However, we want to use a factory for generating our widgets, which means we only have the index to calculate the desired two-dimensional position. In the simplest case, we create a layout that places a certain amount of widgets per row or per column. Grid layout example To place three elements per row from left to right in a gtk::Grid we could use the following position function. fn position(&self, index: &usize) -> GridPosition { let index = *index as i32; let row = index / 3; let column = index % 3; GridPosition { column, row, width: 1, height: 1, } } And indeed, it works as expected. Row placement grid screenshot","breadcrumbs":"Efficient UI updates » The position function » How it works","id":"76","title":"How it works"},"77":{"body":"Let's have a look at a more complex layout. It's unlikely that this would be used in a real application, but it's still interesting to have a look at it. To create a chess grid layout, we need to place our widgets only on fields of one color and leave the other fields empty. Grid layout example Actually, the code isn't too complicated. fn position(&self, index: &usize) -> GridPosition { let index = *index as i32; // add a new row for every 5 elements let row = index / 5; // use every second column and move columns in uneven rows by 1 let column = (index % 5) * 2 + row % 2; GridPosition { column, row, width: 1, height: 1, } } And as you can see, it works! Chess grid layout screenshot","breadcrumbs":"Efficient UI updates » The position function » A chess grid","id":"77","title":"A chess grid"},"78":{"body":"Technically, we already used components in the previous chapters. So far, we've only used one component per application, but in this chapter, we're going to use multiple components to structure our app. Components are independent parts of your application that can communicate with each other. They are used in a parent-child model: The main app component can have several components and each component can have child components and so on. This means that each component has a parent, except for the main app component which is at the top of this tree structure. To showcase this, we will create a small application which opens a dialog when the user tries to close it. The header bar and the dialog will be implemented as standalone components. App screenshot dark App screenshot dark","breadcrumbs":"Components » Components","id":"78","title":"Components"},"79":{"body":"Components are very useful for separating parts of the UI into smaller, more manageable parts. They are not necessary but for larger applications, they can be very helpful.","breadcrumbs":"Components » When to use components","id":"79","title":"When to use components"},"8":{"body":"Like a person, a computer needs a brain to be functional. It needs to process our messages and remember the results. Relm4 uses the term model as a data type that represents the application state, the memory of your application. For example, to store a counter value, we can store a u8 in our model: struct AppModel { counter: u8,\n}","breadcrumbs":"Basic concepts » Model » Model","id":"8","title":"Model"},"80":{"body":"Components store their child components inside the model as a Controller and handle output messages in the init function by calling the forward method. let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); The forward method will redirect the output messages from the child component and transform them into the parent's input messages. Components are independent from each another so a component can be used easily with several different parent components. Therefore, the child component doesn't know which type its parent component will have. Thus, the forward method allows the parent component to transform the output messages of child components to a message type it can handle properly. In this example, HeaderOutput messages are translated into AppMsg.","breadcrumbs":"Components » Message handling","id":"80","title":"Message handling"},"81":{"body":"Let's write a small example app to see how components can be used in action. For this example, we write parts of an app that can edit images. The app we will write in this chapter is also available here . Run cargo run --example components from the example directory if you want to see the code in action.","breadcrumbs":"Components » Example application","id":"81","title":"Example application"},"82":{"body":"Our first component will be a header bar. There are not a lot of advantages for writing this as component except for reducing the complexity in other parts of our UI. The header bar will have three buttons for three modes that our application can have: View : View the image. Edit : Edit the image. Export : Export the image in different formats. We will not implement the actual functionality, but instead use placeholders to keep things simple.","breadcrumbs":"Components » The header bar","id":"82","title":"The header bar"},"83":{"body":"Usually you want to store everything that affects only your component in the state of the component. However, in this case, there is no state that can be stored in the component, but only state that affects the root component (app). Therefore, we leave the model empty and only send messages to the root component. struct HeaderModel; The message type allows us to switch between the modes. #[derive(Debug)]\nenum HeaderOutput { View, Edit, Export,\n} Our component needs no update method, because the view can emit the component's output messages as part of its click signal handlers, as we will see in the next section.","breadcrumbs":"Components » The model","id":"83","title":"The model"},"84":{"body":"There's nothing special about widgets of a child component. The only difference to the main app component is that the root widget doesn't need to be a gtk::Window. Instead, we use a gtk::HeaderBar here, but theoretically the root widget doesn't even need to be a widget at all (which can be useful in special cases). view! { #[root] gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { add_css_class: \"linked\", #[name = \"group\"] gtk::ToggleButton { set_label: \"View\", set_active: true, connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::View).unwrap() } }, }, gtk::ToggleButton { set_label: \"Edit\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Edit).unwrap() } }, }, gtk::ToggleButton { set_label: \"Export\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Export).unwrap() } }, }, } } }","breadcrumbs":"Components » The widgets","id":"84","title":"The widgets"},"85":{"body":"As with a normal application used to edit files, we want to notify the user before they accidentally close the application and discard all progress. For this — you might have guessed it already — we will use another component.","breadcrumbs":"Components » The close alert","id":"85","title":"The close alert"},"86":{"body":"The state of the dialog only needs to store whether or not it's hidden. struct DialogModel { hidden: bool,\n} The message contains three options: Show is used by the parent to display the dialog. Accept is used internally to indicate that the user agreed to close the application. Cancel is used internally to indicate that the user changes his mind and doesn't want to close the application. #[derive(Debug)]\nenum DialogInput { Show, Accept, Cancel,\n} #[derive(Debug)]\nenum DialogOutput { Close,\n}","breadcrumbs":"Components » The model","id":"86","title":"The model"},"87":{"body":"Unlike the last component, the DialogModel component doesn't send its output messages from a signal handler. Instead, the response signal handler sends input messages to itself, handles them in update, and then sends output messages if necessary. This is a common pattern for more complex components. If your component accepts non-internal inputs as well, you may want to mark the internal variants as #[doc(hidden)] so that users of your component know they're only intended for internal use. view! { gtk::MessageDialog { set_modal: true, #[watch] set_visible: !model.hidden, set_text: Some(\"Do you want to close before saving?\"), set_secondary_text: Some(\"All unsaved changes will be lost\"), add_button: (\"Close\", gtk::ResponseType::Accept), add_button: (\"Cancel\", gtk::ResponseType::Cancel), connect_response[sender] => move |_, resp| { sender.input(if resp == gtk::ResponseType::Accept { DialogInput::Accept } else { DialogInput::Cancel }) } } } In the update implementation, we match the input messages and emit an output if needed. fn update(&mut self, msg: Self::Input, sender: ComponentSender) { match msg { DialogInput::Show => self.hidden = false, DialogInput::Accept => { self.hidden = true; sender.output(DialogOutput::Close).unwrap() } DialogInput::Cancel => self.hidden = true, } }","breadcrumbs":"Components » The widgets","id":"87","title":"The widgets"},"88":{"body":"Now all parts come together to form a single app.","breadcrumbs":"Components » The main app","id":"88","title":"The main app"},"89":{"body":"First, let's define the model of the main app and its messages. #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n} The AppMode struct stores the modes the application can be in. The SetMode message is transformed from the output of our header bar component to update the state of the main application when someone presses a button in the header bar. The Close message is transformed from the output of the dialog component to indicate that the window should be closed. In the model, we store the current AppMode as well as a Controller for each of our child components. The update function of the model is pretty straightforward. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::SetMode(mode) => { self.mode = mode; } AppMsg::CloseRequest => { self.dialog.sender().send(DialogInput::Show).unwrap(); } AppMsg::Close => { relm4::main_application().quit(); } } } We can retrieve a sender for the child component by calling the sender() method on the associated Controller, and then send messages of the associated Input type through it.","breadcrumbs":"Components » The model","id":"89","title":"The model"},"9":{"body":"To help the computer understand what we want to tell it, we first translate user interactions into messages. In Relm4, a message can be any data type, but most often, an enum is used. enum AppMsg { Increment, Decrement,\n} Computers are capable of both sending and receiving messages and similarly, components in Relm4 can send and receive messages. This is accomplished by having two types of messages: Input and Output.","breadcrumbs":"Basic concepts » Messages » Messages","id":"9","title":"Messages"},"90":{"body":"When initializing the app component, we construct the child components by passing the appropriate Init and forwarding any desired inputs and outputs. This is done through a builder provided by Component implementations. We pass the initial parameters via the launch method, and then retrieve the final Controller by calling the forward method. In addition to starting the component, the forward method allows us to take the outputs of the component, transform them with a mapping function, and then pass the result as an input message to another sender (in this case, the input sender of the app component). If you don't need to forward any outputs, you can start the component with the detach method instead. fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); let dialog = DialogModel::builder() .transient_for(&root) .launch(true) .forward(sender.input_sender(), |msg| match msg { DialogOutput::Close => AppMsg::Close, }); let model = AppModel { mode: params, header, dialog, }; let widgets = view_output!(); ComponentParts { model, widgets } } Also, we set the set_transient_for property, which actually uses the main window. The dialog should set his parent window so that GTK can handle the dialog better. The GTK docs state: \"[set_transient_for] allows window managers to e.g. keep the dialog on top of the main window, or center the dialog over the main window\". #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n}","breadcrumbs":"Components » Controllers","id":"90","title":"Controllers"},"91":{"body":"We're almost done! Lastly, let's take a look at the app widgets. view! { main_window = gtk::Window { set_default_width: 500, set_default_height: 250, set_titlebar: Some(model.header.widget()), gtk::Label { #[watch] set_label: &format!(\"Placeholder for {:?}\", model.mode), }, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop } } } Most notably, we retrieve the root widget of our header component through the widget() method on the associated Controller to set it as a child of the main window.","breadcrumbs":"Components » The widgets","id":"91","title":"The widgets"},"92":{"body":"You now know most of the secrets that Relm4 offers. Components can be powerful and if they are implemented correctly, they are even reusable across different apps. The relm4-components crate offers several reusable components you can use in your applications. In the following chapters, we'll look at an even simpler component type called worker, how to implement reusable components yourself and how to use components with async code and multiple threads.","breadcrumbs":"Components » Conclusion","id":"92","title":"Conclusion"},"93":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{ ApplicationExt, ButtonExt, DialogExt, GtkWindowExt, ToggleButtonExt, WidgetExt,\n};\nuse relm4::*; struct HeaderModel; #[derive(Debug)]\nenum HeaderOutput { View, Edit, Export,\n} #[relm4::component]\nimpl SimpleComponent for HeaderModel { type Init = (); type Input = (); type Output = HeaderOutput; view! { #[root] gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { add_css_class: \"linked\", #[name = \"group\"] gtk::ToggleButton { set_label: \"View\", set_active: true, connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::View).unwrap() } }, }, gtk::ToggleButton { set_label: \"Edit\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Edit).unwrap() } }, }, gtk::ToggleButton { set_label: \"Export\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Export).unwrap() } }, }, } } } fn init( _params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = HeaderModel; let widgets = view_output!(); ComponentParts { model, widgets } }\n} struct DialogModel { hidden: bool,\n} #[derive(Debug)]\nenum DialogInput { Show, Accept, Cancel,\n} #[derive(Debug)]\nenum DialogOutput { Close,\n} #[relm4::component]\nimpl SimpleComponent for DialogModel { type Init = bool; type Input = DialogInput; type Output = DialogOutput; view! { gtk::MessageDialog { set_modal: true, #[watch] set_visible: !model.hidden, set_text: Some(\"Do you want to close before saving?\"), set_secondary_text: Some(\"All unsaved changes will be lost\"), add_button: (\"Close\", gtk::ResponseType::Accept), add_button: (\"Cancel\", gtk::ResponseType::Cancel), connect_response[sender] => move |_, resp| { sender.input(if resp == gtk::ResponseType::Accept { DialogInput::Accept } else { DialogInput::Cancel }) } } } fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = DialogModel { hidden: params }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, sender: ComponentSender) { match msg { DialogInput::Show => self.hidden = false, DialogInput::Accept => { self.hidden = true; sender.output(DialogOutput::Close).unwrap() } DialogInput::Cancel => self.hidden = true, } }\n} #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = AppMode; type Input = AppMsg; type Output = (); view! { main_window = gtk::Window { set_default_width: 500, set_default_height: 250, set_titlebar: Some(model.header.widget()), gtk::Label { #[watch] set_label: &format!(\"Placeholder for {:?}\", model.mode), }, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop } } } fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); let dialog = DialogModel::builder() .transient_for(&root) .launch(true) .forward(sender.input_sender(), |msg| match msg { DialogOutput::Close => AppMsg::Close, }); let model = AppModel { mode: params, header, dialog, }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::SetMode(mode) => { self.mode = mode; } AppMsg::CloseRequest => { self.dialog.sender().send(DialogInput::Show).unwrap(); } AppMsg::Close => { relm4::main_application().quit(); } } }\n} fn main() { let relm = RelmApp::new(\"ewlm4.test.components\"); relm.run::(AppMode::Edit);\n}","breadcrumbs":"Components » The complete code","id":"93","title":"The complete code"},"94":{"body":"Most user inputs are fairly easy to process. After receiving a message, you process it in the update function and update the view. Everything only takes a couple of milliseconds at most, so the user won't even notice the slight delay. However, when you have to perform complex calculations or I/O-bound operations that take more than a couple of milliseconds to complete, the user will start noticing that the app doesn't feel reactive or \"snappy\" anymore. For example, such operations are performing network requests, filesystems operations or calculating the last digit of π. To better visualize what happens, let's look at the following image. The expected behavior is on the left, where processing of updates is fast and the app spends most of the time idle, waiting for new user inputs (aka events). Yet on the right, the update function is very slow and blocks the entire application so that no other events can be processed in the meantime and the view update is delayed. The behavior on the right will freeze the entire application and should be avoided. Fortunately, Relm4 gives you plenty of options to keep your application responsive.","breadcrumbs":"Threads and async » Introduction","id":"94","title":"Introduction"},"95":{"body":"In general, we can divide the problem into two categories: CPU-bound operations take a lot of time because actual work needs to be done by the CPU. I/O-bound operations take a lot of time because we have to wait for something to happen, for example, a response from a server. This means that we have CPU resources to do other things in the meantime, but to use them, we need a mechanism like async/await.","breadcrumbs":"Threads and async » Understanding the problem","id":"95","title":"Understanding the problem"},"96":{"body":"Let's look at an example of a CPU-bound operation. For an app that generates cryptographic keys, you might define a generate_rsa_key() function. This function takes some time to compute because generating the key is a difficult calculation so we can treat it as if it was implemented like this: fn generate_rsa_key() { std::thread::sleep(Duration::from_secs(10));\n} If our component receives a GenerateKey message, we start generating the key. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::GenerateKey => { self.rsa_key = generate_rsa_key(); } } } Unfortunately, this will freeze our app. There's no trick to avoid this, the CPU must do a lot of work to calculate the result. However, we can offload this work to other threads to keep our application responsive. Possible solutions for this problem are: Workers : A component without widgets that runs on its own thread Commands : Offload tasks to a runtime in the background and receive a message when the task completes Both are covered in the following chapters.","breadcrumbs":"Threads and async » CPU-bound and other synchronous operations","id":"96","title":"CPU-bound and other synchronous operations"},"97":{"body":"Let's say we also need to perform a web-request to fetch existing encryption keys from a server. In theory, we could use a blocking HTTP client which would put us in the same situation as before. However, using async/await allows us to use the CPU for other things while we're waiting for the response. The resulting asynchronous function could look like this. async fn fetch_rsa_key() { tokio::time::sleep(Duration::from_secs(10)).await;\n} Since we now have an asynchronous function, we can't simply call it like a regular function. Again, there are two options to make this work: Async components and factories : Asynchronous traits for components and factories Commands : Offload tasks to a runtime in the background and receive a message when the task completes","breadcrumbs":"Threads and async » I/O-bound and other async operations","id":"97","title":"I/O-bound and other async operations"},"98":{"body":"Workers are simply components that don't have any widgets. They can be quite useful for applications that need to handle long tasks while remaining responsive. In particular, they are suitable for CPU-bound tasks which need to be handled one at the time because they run on a different thread.","breadcrumbs":"Threads and async » Workers » Workers","id":"98","title":"Workers"},"99":{"body":"A worker is implemented similarly to a component by using the Worker trait. Since workers don't have widgets, you don't need to provide a Widgets type. #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[derive(Debug)]\nenum AsyncHandlerMsg { DelayedIncrement, DelayedDecrement,\n} struct AsyncHandler; impl Worker for AsyncHandler { type Init = (); type Input = AsyncHandlerMsg; type Output = AppMsg; fn init(_init: Self::Init, _sender: ComponentSender) -> Self { Self } fn update(&mut self, msg: AsyncHandlerMsg, sender: ComponentSender) { // Simulating heavy CPU-bound task std::thread::sleep(Duration::from_secs(1)); // Send the result of the calculation back match msg { AsyncHandlerMsg::DelayedIncrement => sender.output(AppMsg::Increment), AsyncHandlerMsg::DelayedDecrement => sender.output(AppMsg::Decrement), } .unwrap() }\n} Workers are constructed similarly to components, too. Use the provided builder to retrieve a WorkerController. fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = AppModel { counter: 0, worker: AsyncHandler::builder() .detach_worker(()) .forward(sender.input_sender(), identity), }; let widgets = view_output!(); ComponentParts { model, widgets } } Through the WorkerController, you can send and receive messages from the worker. The worker's update function will run on a separate thread, so your other components won't be blocked. struct AppModel { counter: u8, worker: WorkerController,\n}","breadcrumbs":"Threads and async » Workers » Implementing a worker","id":"99","title":"Implementing a worker"}},"length":188,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{".":{"=":{"2":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{".":{"1":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":2,"docs":{"164":{"tf":1.0},"170":{"tf":1.0}}},"5":{"df":1,"docs":{"168":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"2":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"9":{".":{"1":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"a":{"d":{"5":{"c":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":2.6457513110645907},"160":{"tf":3.7416573867739413},"162":{"tf":4.242640687119285},"41":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"1":{".":{"7":{"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":2.0},"59":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0}}},"2":{"df":1,"docs":{"145":{"tf":1.0}}},"3":{"df":1,"docs":{"1":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544},"21":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"2":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"77":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"x":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"3":{"0":{"0":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"4":{"0":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"2":{"df":6,"docs":{"107":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}},"5":{"0":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"8":{"df":2,"docs":{"1":{"tf":1.0},"132":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"4":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"6":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"162":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":2.449489742783178},"162":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"9":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"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":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"5":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"6":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"7":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"8":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"9":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"115":{"tf":1.0},"144":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"124":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"125":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"132":{"tf":1.0}}}}},"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"174":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":9,"docs":{"115":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"65":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"15":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"48":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"29":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"119":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"a":{"df":2,"docs":{"153":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}},"df":5,"docs":{"107":{"tf":2.6457513110645907},"108":{"tf":2.8284271247461903},"109":{"tf":2.0},"110":{"tf":3.1622776601683795},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772}},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":2.0},"110":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"i":{"a":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"159":{"tf":4.69041575982343},"162":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"113":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"103":{"tf":1.0},"144":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"103":{"tf":1.0},"167":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"0":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":61,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"107":{"tf":2.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":3.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"78":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":32,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":23,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"18":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"131":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"90":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"148":{"tf":1.0}}},"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":6,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"174":{"tf":1.0},"30":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":3.1622776601683795},"120":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"174":{"tf":1.4142135623730951},"35":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"144":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":3.605551275463989},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"92":{"tf":1.0},"97":{"tf":1.7320508075688772}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"[":{"0":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}},"1":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"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":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.0},"71":{"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":18,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"187":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"170":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"r":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":3,"docs":{"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"184":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"186":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"103":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"137":{"tf":1.0},"144":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"d":{"df":2,"docs":{"125":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":2.0},"167":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"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":1,"docs":{"154":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":13,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"43":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"u":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}},"df":16,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.4142135623730951},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"44":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"130":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"108":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"15":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"170":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"133":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":15,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"149":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"42":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.6457513110645907},"164":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"138":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":2.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"83":{"tf":1.0}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"148":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"101":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"m":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"128":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":2.0},"77":{"tf":2.0}}}}}},"m":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"df":13,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"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":{},"g":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"100":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"142":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"78":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"x":{"df":7,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"100":{"tf":2.0},"103":{"tf":3.3166247903554},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"108":{"tf":3.872983346207417},"109":{"tf":2.6457513110645907},"11":{"tf":2.6457513110645907},"110":{"tf":2.0},"114":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.0},"138":{"tf":2.23606797749979},"14":{"tf":2.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":3.605551275463989},"170":{"tf":1.7320508075688772},"171":{"tf":2.8284271247461903},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":3.1622776601683795},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"21":{"tf":3.1622776601683795},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":3.4641016151377544},"79":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":2.0},"9":{"tf":1.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.0},"92":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":18,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"57":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"126":{"tf":1.0},"148":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":2.0}},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"181":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"136":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"6":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"125":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"1":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"1":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":2.0},"162":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"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":1,"docs":{"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"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":{},"f":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"148":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":2.8284271247461903},"160":{"tf":2.449489742783178},"162":{"tf":2.6457513110645907}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":40,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"18":{"tf":1.0},"185":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":3.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"112":{"tf":1.0},"44":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"108":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":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":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"32":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"156":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"r":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"38":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"171":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":10,"docs":{"107":{"tf":2.0},"108":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"110":{"tf":3.605551275463989},"167":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"146":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"95":{"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":3,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"12":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"58":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"144":{"tf":1.0},"167":{"tf":1.0},"183":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"115":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"178":{"tf":1.0},"21":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"119":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"140":{"tf":1.0},"27":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"149":{"tf":1.0},"173":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"d":{"df":6,"docs":{"120":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.7320508075688772},"156":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"183":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"169":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":51,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":3.3166247903554},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"138":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"57":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"103":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"173":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"122":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":1,"docs":{"162":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"35":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":2.449489742783178},"162":{"tf":2.8284271247461903},"20":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":3.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":2.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":28,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}},"x":{"df":3,"docs":{"119":{"tf":1.0},"39":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"45":{"tf":2.23606797749979},"46":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"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":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"110":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":2.0},"162":{"tf":3.872983346207417},"185":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":2.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"<":{"b":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"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":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772},"90":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":4,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"z":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"31":{"tf":1.0}},"i":{"df":5,"docs":{"125":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":46,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.8284271247461903},"106":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"64":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.4142135623730951}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":3.0},"165":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"21":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"h":{"c":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}}},"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":{"4":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"b":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":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":{"133":{"tf":2.0}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"45":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"w":{"df":1,"docs":{"36":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}}},"4":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.6457513110645907},"12":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.4142135623730951},"6":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":5,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"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":{},"i":{"d":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":3.0},"162":{"tf":3.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"157":{"tf":3.3166247903554},"159":{"tf":3.605551275463989},"162":{"tf":3.605551275463989},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"{":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"_":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}}}}}},"df":29,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"173":{"tf":1.4142135623730951},"57":{"tf":1.0},"72":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"163":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"l":{"df":14,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"167":{"tf":1.0},"30":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"167":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"p":{"df":15,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":4.47213595499958},"124":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"79":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"172":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"150":{"tf":1.0},"35":{"tf":1.0}}},"df":31,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"131":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"100":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":11,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"157":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":2,"docs":{"159":{"tf":1.0},"176":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"173":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":41,"docs":{"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":2.0},"152":{"tf":1.0},"160":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"164":{"tf":1.0},"6":{"tf":1.0}}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"131":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"i":{"c":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"146":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"103":{"tf":1.0},"167":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"_":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":38,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"20":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"45":{"tf":2.449489742783178}}},"n":{"c":{"df":3,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"15":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}},"f":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"129":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"106":{"tf":1.0}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"t":{"'":{"df":15,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":2.0},"35":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"160":{"tf":1.0}}}},"y":{"df":2,"docs":{"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":2.0},"25":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"35":{"tf":1.0}},"r":{"df":7,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"154":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":5,"docs":{"171":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":2.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"129":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"'":{"df":31,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}},"’":{"df":2,"docs":{"110":{"tf":1.0},"122":{"tf":1.0}}}}},"i":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"15":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"16":{"tf":2.0},"5":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"119":{"tf":1.0},"160":{"tf":1.0}}},"k":{"df":6,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":2.0},"148":{"tf":1.0},"150":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}}},"o":{"a":{"d":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"4":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"145":{"tf":1.4142135623730951},"157":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":7,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"30":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"111":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":3,"docs":{"172":{"tf":1.0},"23":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":15,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":50,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.0},"112":{"tf":1.7320508075688772},"129":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":2.0},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"158":{"tf":1.0},"160":{"tf":3.1622776601683795},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"24":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":35,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"76":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":10,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"90":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"k":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"7":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"8":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.0},"165":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"0":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"137":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":47,"docs":{"10":{"tf":2.6457513110645907},"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":2.449489742783178},"11":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"12":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"21":{"tf":3.1622776601683795},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":2.0},"9":{"tf":2.449489742783178},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"41":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"142":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"120":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"74":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"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":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"178":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":50,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":2.23606797749979},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"115":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":7,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":2.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":2.8284271247461903},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"28":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"174":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"146":{"tf":1.0},"72":{"tf":1.0}}}},"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":2.0},"162":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"142":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"144":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"160":{"tf":1.4142135623730951},"54":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"38":{"tf":1.0}}},"h":{"df":3,"docs":{"146":{"tf":1.0},"161":{"tf":1.0},"84":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"115":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"df":30,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"135":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"123":{"tf":1.4142135623730951},"42":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"d":{"df":5,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"46":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":3,"docs":{"174":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":6,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"124":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.0},"167":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"128":{"tf":1.0},"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"105":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"135":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"1":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"119":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"74":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.0},"122":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"145":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"108":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"103":{"tf":1.4142135623730951},"145":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":14,"docs":{"108":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"38":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":2,"docs":{"119":{"tf":2.0},"57":{"tf":1.4142135623730951}}},"t":{"df":21,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"142":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"119":{"tf":1.0},"148":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"145":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}}}},"y":{"df":2,"docs":{"21":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951}},"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":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"2":{"4":{"df":0,"docs":{},"x":{"2":{"4":{"/":{"a":{"c":{"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":1,"docs":{"101":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"146":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":4,"docs":{"16":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"127":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"160":{"tf":1.0},"186":{"tf":1.0},"37":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"138":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":2,"docs":{"166":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":2.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":4,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":2.6457513110645907},"126":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":2.8284271247461903},"160":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"44":{"tf":2.0},"90":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"0":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"df":3,"docs":{"108":{"tf":3.3166247903554},"110":{"tf":3.3166247903554},"139":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"112":{"tf":1.0},"139":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":4,"docs":{"160":{"tf":1.0},"20":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"168":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"138":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"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":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"105":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0}},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"153":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"72":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":2.23606797749979},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"48":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":4,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"113":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"183":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"15":{"tf":1.0}}}},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"4":{"'":{"df":3,"docs":{"144":{"tf":1.0},"165":{"tf":1.0},"39":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"185":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":7,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":48,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"a":{"d":{"d":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"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":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951},"93":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"v":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"180":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"173":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"120":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"4":{"tf":1.0}}},"y":{"]":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"108":{"tf":3.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"167":{"tf":1.0},"178":{"tf":1.0}}},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":33,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"57":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"4":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":2.449489742783178},"137":{"tf":2.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"171":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":14,"docs":{"1":{"tf":1.7320508075688772},"103":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":2.449489742783178},"46":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"60":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":1,"docs":{"23":{"tf":1.0}}},"n":{"df":2,"docs":{"161":{"tf":1.0},"24":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"35":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{".":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":1,"docs":{"162":{"tf":1.0}}},"4":{"df":1,"docs":{"162":{"tf":1.0}}},"5":{"df":1,"docs":{"162":{"tf":1.0}}},"6":{"df":1,"docs":{"162":{"tf":1.0}}},"7":{"df":1,"docs":{"162":{"tf":1.0}}},"8":{"df":1,"docs":{"162":{"tf":1.0}}},"9":{"df":1,"docs":{"162":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":1,"docs":{"162":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"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":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.0},"74":{"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":{},"o":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"145":{"tf":1.0},"162":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":2.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"n":{"d":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"148":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"170":{"tf":1.0},"30":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"170":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":12,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"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":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":3.3166247903554},"160":{"tf":2.449489742783178},"162":{"tf":2.0},"174":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"84":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"145":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":16,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"144":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":16,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"145":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"145":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":3.0},"110":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":2.0},"130":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"162":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"4":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"30":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":2.449489742783178},"125":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"52":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":1.0}},"n":{"df":2,"docs":{"128":{"tf":1.0},"137":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"108":{"tf":1.0},"126":{"tf":2.6457513110645907},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"187":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"i":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"155":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"157":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"153":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"0":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}},"i":{"df":6,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"23":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"d":{"df":2,"docs":{"119":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"t":{"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"106":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"c":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"d":{":":{":":{"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":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"2":{"1":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"96":{"tf":1.0}}},"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"177":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}},"p":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":45,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"167":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}},"i":{"df":3,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.4142135623730951},"184":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":3.0},"59":{"tf":3.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"(":{"4":{"2":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"b":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"106":{"tf":2.449489742783178},"75":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"40":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":4.242640687119285},"114":{"tf":2.8284271247461903},"115":{"tf":2.23606797749979},"116":{"tf":2.8284271247461903},"117":{"tf":3.0},"118":{"tf":2.0},"129":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":2.449489742783178},"109":{"tf":2.0},"110":{"tf":2.8284271247461903},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":2.0}}}},"t":{"'":{"df":8,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"157":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"135":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":10,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"k":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":2,"docs":{"15":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"44":{"tf":1.0}}}},"p":{"df":6,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"59":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":2.6457513110645907},"15":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"130":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"153":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"df":5,"docs":{"119":{"tf":1.0},"164":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":14,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":56,"docs":{"100":{"tf":2.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"162":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":3.7416573867739413},"23":{"tf":2.0},"25":{"tf":2.8284271247461903},"27":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0},"99":{"tf":2.0}}}}}},"u":{"6":{"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{")":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":3.1622776601683795},"177":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"i":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":2.6457513110645907},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"38":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.0},"183":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"120":{"tf":1.0},"159":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"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":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.6457513110645907},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":2.0},"48":{"tf":3.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"120":{"tf":1.7320508075688772},"128":{"tf":1.0}}}},"df":110,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"144":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":3.1622776601683795},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"108":{"tf":1.0}}},"df":15,"docs":{"108":{"tf":2.449489742783178},"110":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.0}}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":3,"docs":{"164":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0}}},"5":{"df":3,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"7":{"df":2,"docs":{"182":{"tf":1.0},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"114":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":2.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"19":{"tf":1.0},"20":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"e":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"!":{"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"u":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"173":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"1":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"a":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"175":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}}}},"df":55,"docs":{"103":{"tf":2.0},"104":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"31":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":5,"docs":{"103":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}},"b":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"135":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":83,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"110":{"tf":2.8284271247461903},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"12":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.6457513110645907},"142":{"tf":2.449489742783178},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":3.4641016151377544},"146":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":3.0},"162":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":2.0},"21":{"tf":4.123105625617661},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"27":{"tf":2.6457513110645907},"29":{"tf":2.0},"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":3.1622776601683795},"45":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"84":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"93":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"43":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"21":{"tf":1.0},"25":{"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.0},"124":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"144":{"tf":1.0},"166":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"164":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"103":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":40,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":2.0},"17":{"tf":1.0},"173":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"171":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":3.0}}}}},"l":{"d":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"142":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":4,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"174":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"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":15,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}}}}},"x":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"y":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"119":{"tf":1.0},"49":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{".":{"=":{"2":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{".":{"1":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":15,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}},"5":{"df":14,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"2":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0}}},"7":{"df":7,"docs":{"157":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"9":{".":{"1":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"a":{"d":{"5":{"c":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":2.6457513110645907},"160":{"tf":3.7416573867739413},"162":{"tf":4.242640687119285},"41":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"1":{".":{"7":{"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":2.0},"59":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0}}},"2":{"df":1,"docs":{"145":{"tf":1.0}}},"3":{"df":1,"docs":{"1":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544},"21":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"2":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"77":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"x":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"3":{"0":{"0":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"4":{"0":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"2":{"df":6,"docs":{"107":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}},"5":{"0":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"8":{"df":2,"docs":{"1":{"tf":1.0},"132":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"4":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"6":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"162":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":2.449489742783178},"162":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"9":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"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":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"5":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"6":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"7":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"8":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"9":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"115":{"tf":1.0},"144":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"124":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":2.0},"16":{"tf":1.0},"181":{"tf":1.7320508075688772},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"125":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"132":{"tf":1.0}}}}},"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.7320508075688772},"160":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"174":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":9,"docs":{"115":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"65":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"15":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"48":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"29":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"119":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"a":{"df":2,"docs":{"153":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}},"df":5,"docs":{"107":{"tf":2.6457513110645907},"108":{"tf":3.0},"109":{"tf":2.0},"110":{"tf":3.1622776601683795},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772}},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":2.0},"110":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"i":{"a":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"159":{"tf":4.69041575982343},"162":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"113":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"103":{"tf":1.0},"144":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"103":{"tf":1.0},"167":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"0":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":62,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"107":{"tf":2.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":3.3166247903554},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"78":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":32,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":23,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"18":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"131":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"90":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"148":{"tf":1.0}}},"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":6,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"174":{"tf":1.0},"30":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":3.1622776601683795},"120":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"174":{"tf":1.4142135623730951},"35":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"144":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":17,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":4.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"170":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"[":{"0":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}},"1":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"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":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":2.8284271247461903},"65":{"tf":1.0},"71":{"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":18,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"187":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"170":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"r":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":3,"docs":{"78":{"tf":1.0},"82":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}},"i":{"c":{"df":12,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"184":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"186":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"103":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"137":{"tf":1.0},"144":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"d":{"df":2,"docs":{"125":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.4142135623730951},"160":{"tf":2.0},"167":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"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":1,"docs":{"154":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":13,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"43":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"u":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}},"df":16,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.4142135623730951},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"44":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"130":{"tf":2.23606797749979},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"108":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"15":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"170":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"133":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}}},"df":15,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"149":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"42":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.6457513110645907},"164":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"138":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":18,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"142":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":2.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"83":{"tf":1.0}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"148":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"101":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"m":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"141":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"128":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":2.0},"77":{"tf":2.0}}}}}},"m":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"df":14,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"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":{},"g":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"100":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"142":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"47":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"78":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"x":{"df":7,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":93,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"100":{"tf":2.0},"103":{"tf":3.605551275463989},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.6457513110645907},"108":{"tf":4.123105625617661},"109":{"tf":2.8284271247461903},"11":{"tf":2.6457513110645907},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.449489742783178},"138":{"tf":2.6457513110645907},"139":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.0},"169":{"tf":3.7416573867739413},"170":{"tf":1.7320508075688772},"171":{"tf":3.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":3.1622776601683795},"183":{"tf":2.0},"184":{"tf":1.0},"21":{"tf":3.3166247903554},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":3.7416573867739413},"79":{"tf":2.0},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"9":{"tf":1.0},"90":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":18,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.0},"57":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"126":{"tf":1.0},"148":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":2.0}},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":2.0},"160":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"90":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"181":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"6":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"125":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"1":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"1":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":2.0},"162":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"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":1,"docs":{"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"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":{},"f":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"148":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":2.8284271247461903},"160":{"tf":2.449489742783178},"162":{"tf":2.6457513110645907}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":40,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"18":{"tf":1.0},"185":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":3.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"112":{"tf":1.0},"44":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"108":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"134":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":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":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"32":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":2.449489742783178}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"156":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"r":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"38":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"171":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":10,"docs":{"107":{"tf":2.0},"108":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"110":{"tf":3.605551275463989},"167":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"42":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"146":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"95":{"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":3,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"43":{"tf":1.4142135623730951},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"12":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"58":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"144":{"tf":1.0},"167":{"tf":1.0},"183":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"115":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"178":{"tf":1.0},"21":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"119":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"140":{"tf":1.0},"27":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"149":{"tf":1.0},"173":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":31,"docs":{"160":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"d":{"df":6,"docs":{"120":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.7320508075688772},"156":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"183":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"169":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":51,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":3.4641016151377544},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"138":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"57":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":29,"docs":{"103":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"173":{"tf":2.0},"184":{"tf":1.7320508075688772},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"165":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"173":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"122":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":1,"docs":{"162":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"35":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":2.449489742783178},"162":{"tf":2.8284271247461903},"20":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":3.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":2.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}},"x":{"df":3,"docs":{"119":{"tf":1.0},"39":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"45":{"tf":2.23606797749979},"46":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"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":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"110":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":2.0},"162":{"tf":3.872983346207417},"185":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":2.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"<":{"b":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"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":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772},"90":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":4,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"z":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"31":{"tf":1.0}},"i":{"df":5,"docs":{"125":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.8284271247461903},"106":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"64":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.4142135623730951}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":3.0},"165":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"21":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"h":{"c":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}}},"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":{"4":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"137":{"tf":1.7320508075688772},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"b":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":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":{"133":{"tf":2.0}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"45":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"w":{"df":1,"docs":{"36":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}}},"4":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.6457513110645907},"12":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.4142135623730951},"6":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":5,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"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":{},"i":{"d":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":3.0},"162":{"tf":3.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"157":{"tf":3.3166247903554},"159":{"tf":3.605551275463989},"162":{"tf":3.605551275463989},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"{":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"_":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}}}}}},"df":29,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.23606797749979},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"173":{"tf":1.4142135623730951},"57":{"tf":1.0},"72":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"l":{"df":14,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"167":{"tf":1.0},"30":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"167":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"p":{"df":15,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":4.47213595499958},"124":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"79":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"172":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"150":{"tf":1.0},"35":{"tf":1.0}}},"df":31,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"131":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"100":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"3":{"2":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":11,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"157":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":2,"docs":{"159":{"tf":1.0},"176":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"173":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":41,"docs":{"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":2.0},"152":{"tf":1.0},"160":{"tf":2.6457513110645907},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"164":{"tf":1.0},"6":{"tf":1.0}}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"131":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"i":{"c":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"146":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"103":{"tf":1.0},"167":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"_":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":38,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"20":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":2.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"45":{"tf":2.449489742783178}}},"n":{"c":{"df":3,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"15":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}},"f":{"a":{"c":{"df":5,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"106":{"tf":1.0}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.7320508075688772},"24":{"tf":1.0}}}}},"t":{"'":{"df":15,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":2.0},"35":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"160":{"tf":1.0}}}},"y":{"df":2,"docs":{"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":2.0},"25":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"35":{"tf":1.0}},"r":{"df":7,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"154":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":5,"docs":{"171":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":2.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"129":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"'":{"df":31,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}},"’":{"df":2,"docs":{"110":{"tf":1.0},"122":{"tf":1.0}}}}},"i":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"15":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"16":{"tf":2.0},"5":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0}}},"k":{"df":6,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":2.23606797749979},"148":{"tf":1.0},"150":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}}},"o":{"a":{"d":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"4":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"145":{"tf":1.4142135623730951},"157":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":7,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"30":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"111":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":3,"docs":{"172":{"tf":1.0},"23":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":15,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":59,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.0},"112":{"tf":1.7320508075688772},"129":{"tf":1.0},"138":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.6457513110645907},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":2.8284271247461903},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":2.8284271247461903},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.8284271247461903},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"24":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":35,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.0},"59":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"76":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":10,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"90":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"k":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"7":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"8":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.0},"165":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"0":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"137":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":47,"docs":{"10":{"tf":3.0},"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":2.449489742783178},"11":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"12":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":2.0},"167":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":2.0},"9":{"tf":2.8284271247461903},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"43":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":25,"docs":{"163":{"tf":2.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"142":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"120":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"74":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"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":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"178":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":50,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":2.23606797749979},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"21":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"54":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":2.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"115":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":7,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":2.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":2.8284271247461903},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"28":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"174":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"146":{"tf":1.0},"72":{"tf":1.0}}}},"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":2.0},"162":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"142":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"144":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"160":{"tf":1.4142135623730951},"54":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"38":{"tf":1.0}}},"h":{"df":3,"docs":{"146":{"tf":1.0},"161":{"tf":1.0},"84":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"115":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"df":30,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"135":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"123":{"tf":1.4142135623730951},"42":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"d":{"df":5,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"46":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":3,"docs":{"174":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":6,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"124":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.0},"167":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"128":{"tf":1.0},"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"105":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"135":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"1":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"119":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"74":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":11,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"145":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"108":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"103":{"tf":1.4142135623730951},"145":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":14,"docs":{"108":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"38":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":2,"docs":{"119":{"tf":2.0},"57":{"tf":1.4142135623730951}}},"t":{"df":21,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"142":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"119":{"tf":1.0},"148":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"145":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}}}},"y":{"df":2,"docs":{"21":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.7320508075688772},"77":{"tf":1.0}},"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":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"2":{"4":{"df":0,"docs":{},"x":{"2":{"4":{"/":{"a":{"c":{"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":1,"docs":{"101":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"146":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":4,"docs":{"16":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"127":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"160":{"tf":1.0},"186":{"tf":1.0},"37":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"138":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":2,"docs":{"166":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":2.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":4,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":2.8284271247461903},"126":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":3.0},"160":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":2.0},"90":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"0":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"df":3,"docs":{"108":{"tf":3.3166247903554},"110":{"tf":3.3166247903554},"139":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"112":{"tf":1.0},"139":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":4,"docs":{"160":{"tf":1.0},"20":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"168":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"138":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"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":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"105":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"153":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"72":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":2.23606797749979},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"48":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":4,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":35,"docs":{"113":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":2.0},"183":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"15":{"tf":1.0}}}},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"4":{"'":{"df":3,"docs":{"144":{"tf":1.0},"165":{"tf":1.0},"39":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"185":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":7,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":48,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"a":{"d":{"d":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"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":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951},"93":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"v":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"180":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"173":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"120":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"4":{"tf":1.0}}},"y":{"]":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.7320508075688772},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"108":{"tf":3.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"148":{"tf":1.0},"170":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"167":{"tf":1.0},"178":{"tf":1.0}}},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":33,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"57":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"4":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"6":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":2.449489742783178},"137":{"tf":2.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"171":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":14,"docs":{"1":{"tf":1.7320508075688772},"103":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":2.449489742783178},"46":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":1,"docs":{"23":{"tf":1.0}}},"n":{"df":2,"docs":{"161":{"tf":1.0},"24":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"35":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{".":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":1,"docs":{"162":{"tf":1.0}}},"4":{"df":1,"docs":{"162":{"tf":1.0}}},"5":{"df":1,"docs":{"162":{"tf":1.0}}},"6":{"df":1,"docs":{"162":{"tf":1.0}}},"7":{"df":1,"docs":{"162":{"tf":1.0}}},"8":{"df":1,"docs":{"162":{"tf":1.0}}},"9":{"df":1,"docs":{"162":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":1,"docs":{"162":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"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":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.0},"74":{"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":{},"o":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"145":{"tf":1.0},"162":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":2.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"n":{"d":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"148":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":2.449489742783178},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"170":{"tf":1.0},"30":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"170":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":12,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"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":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":3.3166247903554},"160":{"tf":2.449489742783178},"162":{"tf":2.0},"174":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"84":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"145":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":16,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"144":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":16,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"145":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"145":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":3.0},"110":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":2.23606797749979},"130":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"162":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"4":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"30":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":2.449489742783178},"125":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"52":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":1.0}},"n":{"df":2,"docs":{"128":{"tf":1.0},"137":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"108":{"tf":1.0},"126":{"tf":2.8284271247461903},"148":{"tf":1.7320508075688772},"149":{"tf":2.6457513110645907},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"187":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"i":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"155":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"157":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"153":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"0":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}},"i":{"df":6,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"23":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"d":{"df":2,"docs":{"119":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"t":{"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"106":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"c":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"d":{":":{":":{"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":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"2":{"1":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"96":{"tf":1.0}}},"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"177":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}},"p":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":45,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"167":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}},"i":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.4142135623730951},"184":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":3.0},"59":{"tf":3.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"(":{"4":{"2":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"b":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":2.0},"101":{"tf":2.0},"102":{"tf":1.0},"106":{"tf":2.449489742783178},"75":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"40":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":2.449489742783178},"112":{"tf":2.6457513110645907},"113":{"tf":4.47213595499958},"114":{"tf":3.1622776601683795},"115":{"tf":2.449489742783178},"116":{"tf":3.0},"117":{"tf":3.4641016151377544},"118":{"tf":2.449489742783178},"129":{"tf":2.0},"46":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":2.449489742783178},"109":{"tf":2.0},"110":{"tf":2.8284271247461903},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":2.23606797749979}}}},"t":{"'":{"df":8,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"157":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"135":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":10,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"k":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":2,"docs":{"15":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":14,"docs":{"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"44":{"tf":1.0}}}},"p":{"df":6,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":3.3166247903554},"59":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.8284271247461903},"50":{"tf":1.7320508075688772},"51":{"tf":2.6457513110645907},"52":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"15":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"130":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"153":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"df":5,"docs":{"119":{"tf":1.0},"164":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":14,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":56,"docs":{"100":{"tf":2.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"162":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":3.7416573867739413},"23":{"tf":2.0},"25":{"tf":2.8284271247461903},"27":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0},"99":{"tf":2.0}}}}}},"u":{"6":{"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{")":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":3.1622776601683795},"177":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"i":{"df":47,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"48":{"tf":3.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"38":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.0},"183":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"120":{"tf":1.0},"159":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"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":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":56,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.6457513110645907},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":2.0},"37":{"tf":2.0},"48":{"tf":3.3166247903554},"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"128":{"tf":1.0}}}},"df":110,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":3.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"144":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":3.1622776601683795},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"108":{"tf":1.0}}},"df":15,"docs":{"108":{"tf":2.449489742783178},"110":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.0}}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"5":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"182":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"114":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":2.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"19":{"tf":1.0},"20":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"e":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"!":{"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"u":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"173":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"1":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"a":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"175":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}}}},"df":55,"docs":{"103":{"tf":2.0},"104":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":2.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":2.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"31":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":5,"docs":{"103":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}},"b":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"135":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":83,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"113":{"tf":2.23606797749979},"114":{"tf":2.0},"115":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.0},"12":{"tf":3.1622776601683795},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.8284271247461903},"142":{"tf":2.6457513110645907},"143":{"tf":2.23606797749979},"144":{"tf":2.23606797749979},"145":{"tf":3.605551275463989},"146":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":2.0},"157":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":3.0},"162":{"tf":2.23606797749979},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"21":{"tf":4.123105625617661},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"27":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":3.1622776601683795},"45":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"84":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979},"93":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"43":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"21":{"tf":1.0},"25":{"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.0},"124":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"144":{"tf":1.0},"166":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"164":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"103":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":40,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":2.0},"17":{"tf":1.0},"173":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"171":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":3.3166247903554}}}}},"l":{"d":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"142":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":4,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"174":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"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":15,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}}}}},"x":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"y":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"119":{"tf":1.0},"49":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"181":{"tf":1.0}}}}}}},"d":{"d":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":4,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"97":{"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":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"133":{"tf":1.0}}}}}}},"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0}}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"107":{"tf":1.0},"142":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"36":{"tf":1.0},"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"136":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"96":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"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":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"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":1,"docs":{"117":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"185":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"153":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"103":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"56":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"122":{"tf":1.0},"42":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"119":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":10,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":5,"docs":{"56":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"152":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"180":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"155":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"105":{"tf":1.0},"122":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.0},"146":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"139":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"4":{"df":3,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"122":{"tf":1.0},"42":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"156":{"tf":1.0},"40":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"48":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":4,"docs":{"114":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}},"5":{"df":2,"docs":{"168":{"tf":1.0},"179":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"7":{"df":2,"docs":{"182":{"tf":1.0},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"140":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":20,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"42":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/book/stable/searchindex.json b/book/stable/searchindex.json index 80edf6089ce6..e93756e4db4c 100644 --- a/book/stable/searchindex.json +++ b/book/stable/searchindex.json @@ -1 +1 @@ -{"doc_urls":["introduction.html#why-relm4","introduction.html#requirements","introduction.html#issues-and-feedback","introduction.html#platform-support","introduction.html#examples","introduction.html#screenshots","introduction.html#special-thanks","basic_concepts/index.html#basic-concepts","basic_concepts/model.html#model","basic_concepts/messages.html#messages","basic_concepts/messages/input.html#input-messages","basic_concepts/messages/output.html#output-messages","basic_concepts/widgets.html#widgets","basic_concepts/components.html#components","basic_concepts/components.html#the-component-trait","basic_concepts/components.html#the-simplecomponent-trait","first_app.html#your-first-app","first_app.html#application-architecture","first_app.html#messages","first_app.html#the-model","first_app.html#the-widgets","first_app.html#implement-a-component-with-simplecomponent","first_app.html#running-the-app","first_app.html#summary","first_app.html#conclusion","first_app.html#the-complete-code","component_macro.html#the-component-macro","component_macro.html#whats-different","component_macro.html#properties","component_macro.html#widgets","component_macro.html#events","component_macro.html#ui-updates","component_macro.html#constructing-the-widgets","component_macro.html#the-complete-code","tricks.html#tips-and-tricks","tricks.html#advanced-view-macro-features","tricks.html#common-pitfalls","tricks.html#message-recursion","tricks.html#sending-errors","tricks.html#common-compiler-errors","tricks.html#private-type-in-public-interface","tricks.html#method-container_add-is-missing","tricks.html#working-with-gtk-rs","tricks.html#reading-docs","tricks.html#using-the-inspector","tricks.html#demo-applications","tricks.html#our-ecosystem","tricks.html#guaranteed-helpful-our-matrix-chat","efficient_ui/index.html#efficient-ui-updates","efficient_ui/tracker.html#tracker","efficient_ui/tracker.html#the-tracker-crate","efficient_ui/tracker.html#a-tracker-example","efficient_ui/tracker.html#using-trackers-in-relm4-apps","efficient_ui/tracker.html#the-icons","efficient_ui/tracker.html#the-model","efficient_ui/tracker.html#the-view","efficient_ui/tracker.html#the-main-function","efficient_ui/tracker.html#the-track-attribute","efficient_ui/tracker.html#initializing-the-model","efficient_ui/tracker.html#the-complete-code","efficient_ui/factory.html#factory","efficient_ui/factory.html#factories-in-relm4","efficient_ui/factory.html#the-model","efficient_ui/factory.html#the-input-message-type","efficient_ui/factory.html#the-output-message-type","efficient_ui/factory.html#the-factory-implementation","efficient_ui/factory.html#creating-the-widget","efficient_ui/factory.html#initializing-the-model","efficient_ui/factory.html#the-main-component","efficient_ui/factory.html#the-component-types","efficient_ui/factory.html#initializing-the-factory","efficient_ui/factory.html#initializing-the-widgets","efficient_ui/factory.html#the-main-update-function","efficient_ui/factory.html#the-main-function","efficient_ui/factory.html#the-complete-code","efficient_ui/factory_position.html#the-position-function","efficient_ui/factory_position.html#how-it-works","efficient_ui/factory_position.html#a-chess-grid","components.html#components","components.html#when-to-use-components","components.html#message-handling","components.html#example-application","components.html#the-header-bar","components.html#the-model","components.html#the-widgets","components.html#the-close-alert","components.html#the-model-1","components.html#the-widgets-1","components.html#the-main-app","components.html#the-model-2","components.html#controllers","components.html#the-widgets-2","components.html#conclusion","components.html#the-complete-code","threads_and_async/index.html#introduction","threads_and_async/index.html#understanding-the-problem","threads_and_async/index.html#cpu-bound-and-other-synchronous-operations","threads_and_async/index.html#io-bound-and-other-async-operations","threads_and_async/worker.html#workers","threads_and_async/worker.html#implementing-a-worker","threads_and_async/commands.html#commands","threads_and_async/commands.html#synchronous-tasks","threads_and_async/commands.html#configuration","threads_and_async/async.html#async-components-and-factories","threads_and_async/async.html#the-complete-code","threads_and_async/overview.html#overview","threads_and_async/overview.html#summary","child_components.html#child-components","child_components.html#the-alert-component","child_components.html#usage","child_components.html#the-complete-code","widget_templates/index.html#widget-templates","widget_templates/index.html#defining-templates","widget_templates/index.html#template-children","widget_templates/index.html#using-templates","widget_templates/index.html#some-notes-on-orders","widget_templates/index.html#the-complete-code","widget_templates/accessing_nested_template_elements.html#accessing-nested-template-elements","widget_templates/accessing_nested_template_elements.html#the-complete-code","cli.html#command-line-interfaces","cli.html#result","cli.html#the-complete-code","gtk_rs.html#gtk-rs-overview","gtk_rs.html#gobjects","gtk_rs.html#subclassing","gtk_rs.html#properties","gtk_rs.html#signals","gtk_rs.html#settings","gtk_rs.html#lists","gtk_rs.html#composite-templates","resource_bundles.html#resource-bundles","resource_bundles.html#cargo","resource_bundles.html#data-directory","resource_bundles.html#cargotoml","resource_bundles.html#buildrs","resource_bundles.html#mainrs","continuous_integration.html#continuous-integration","continuous_integration.html#github-actions","component_macro/reference.html#the-component-macro-reference","component_macro/reference.html#public-widgets","component_macro/reference.html#the-view-macro","component_macro/reference.html#constructing-widgets","component_macro/reference.html#child-widgets","component_macro/reference.html#naming-widgets","component_macro/reference.html#conditional-widgets","component_macro/reference.html#returned-widgets","component_macro/reference.html#properties","component_macro/reference.html#trait-disambiguation","component_macro/reference.html#signals","component_macro/reference.html#blocking-signals-temporarily","component_macro/reference.html#manual-code","component_macro/reference.html#add-more-fields-to-your-widgets","component_macro/reference.html#manual-view","component_macro/expansion.html#macro-expansion","component_macro/expansion.html#the-boilerplate","component_macro/expansion.html#the-model","component_macro/expansion.html#the-message-type","component_macro/expansion.html#the-macro","component_macro/expansion.html#the-expansion","component_macro/expansion.html#the-widgets-struct","component_macro/expansion.html#the-simplecomponent-trait-implementation","component_macro/expansion.html#conclusion","component_macro/expansion.html#the-whole-macro-expansion","migrations/index.html#migration-guides","migrations/0_2_to_0_4.html#migration-from-v02-to-v04","migrations/0_2_to_0_4.html#factoryprototype","migrations/0_2_to_0_4.html#widget-macro","migrations/0_2_to_0_4.html#components","migrations/0_4_to_0_5.html#migration-from-v04-to-v05","migrations/0_4_to_0_5.html#components","migrations/0_4_to_0_5.html#senders-and-messages","migrations/0_4_to_0_5.html#initializing-components","migrations/0_4_to_0_5.html#helper-traits","migrations/0_4_to_0_5.html#factories","migrations/0_4_to_0_5.html#the-view-macro","migrations/0_4_to_0_5.html#the-widget-macro","migrations/0_4_to_0_5.html#relmapp","migrations/0_4_to_0_5.html#miscellaneous","migrations/0_4_to_0_5.html#summary","migrations/0_5_to_0_6.html#migration-from-v05-to-v06","migrations/0_5_to_0_6.html#renamed-methods","migrations/0_5_to_0_6.html#actions","migrations/0_6_to_0_7.html#migration-from-v06-to-v07","migrations/0_6_to_0_7.html#component-changes","migrations/0_6_to_0_7.html#factory-changes","migrations/0_6_to_0_7.html#example","migrations/0_6_to_0_7.html#other-changes","migrations/0_7_to_0_8.html#migration-from-v07-to-v08"],"index":{"documentStore":{"docInfo":{"0":{"body":57,"breadcrumbs":2,"title":1},"1":{"body":59,"breadcrumbs":2,"title":1},"10":{"body":55,"breadcrumbs":6,"title":2},"100":{"body":170,"breadcrumbs":4,"title":1},"101":{"body":58,"breadcrumbs":5,"title":2},"102":{"body":57,"breadcrumbs":4,"title":1},"103":{"body":300,"breadcrumbs":8,"title":3},"104":{"body":139,"breadcrumbs":7,"title":2},"105":{"body":32,"breadcrumbs":4,"title":1},"106":{"body":59,"breadcrumbs":4,"title":1},"107":{"body":72,"breadcrumbs":4,"title":2},"108":{"body":338,"breadcrumbs":4,"title":2},"109":{"body":392,"breadcrumbs":3,"title":1},"11":{"body":60,"breadcrumbs":6,"title":2},"110":{"body":458,"breadcrumbs":4,"title":2},"111":{"body":55,"breadcrumbs":4,"title":2},"112":{"body":72,"breadcrumbs":4,"title":2},"113":{"body":97,"breadcrumbs":4,"title":2},"114":{"body":98,"breadcrumbs":4,"title":2},"115":{"body":65,"breadcrumbs":4,"title":2},"116":{"body":159,"breadcrumbs":4,"title":2},"117":{"body":155,"breadcrumbs":10,"title":4},"118":{"body":178,"breadcrumbs":8,"title":2},"119":{"body":139,"breadcrumbs":6,"title":3},"12":{"body":66,"breadcrumbs":4,"title":1},"120":{"body":155,"breadcrumbs":4,"title":1},"121":{"body":98,"breadcrumbs":5,"title":2},"122":{"body":29,"breadcrumbs":6,"title":3},"123":{"body":16,"breadcrumbs":4,"title":1},"124":{"body":39,"breadcrumbs":4,"title":1},"125":{"body":45,"breadcrumbs":4,"title":1},"126":{"body":37,"breadcrumbs":4,"title":1},"127":{"body":23,"breadcrumbs":4,"title":1},"128":{"body":30,"breadcrumbs":4,"title":1},"129":{"body":29,"breadcrumbs":5,"title":2},"13":{"body":11,"breadcrumbs":4,"title":1},"130":{"body":28,"breadcrumbs":4,"title":2},"131":{"body":15,"breadcrumbs":3,"title":1},"132":{"body":55,"breadcrumbs":4,"title":2},"133":{"body":33,"breadcrumbs":3,"title":1},"134":{"body":16,"breadcrumbs":3,"title":1},"135":{"body":43,"breadcrumbs":3,"title":1},"136":{"body":13,"breadcrumbs":5,"title":2},"137":{"body":98,"breadcrumbs":5,"title":2},"138":{"body":40,"breadcrumbs":6,"title":3},"139":{"body":14,"breadcrumbs":5,"title":2},"14":{"body":12,"breadcrumbs":5,"title":2},"140":{"body":8,"breadcrumbs":5,"title":2},"141":{"body":64,"breadcrumbs":5,"title":2},"142":{"body":77,"breadcrumbs":5,"title":2},"143":{"body":25,"breadcrumbs":5,"title":2},"144":{"body":142,"breadcrumbs":5,"title":2},"145":{"body":51,"breadcrumbs":5,"title":2},"146":{"body":117,"breadcrumbs":4,"title":1},"147":{"body":38,"breadcrumbs":5,"title":2},"148":{"body":43,"breadcrumbs":4,"title":1},"149":{"body":54,"breadcrumbs":6,"title":3},"15":{"body":34,"breadcrumbs":5,"title":2},"150":{"body":26,"breadcrumbs":5,"title":2},"151":{"body":24,"breadcrumbs":7,"title":4},"152":{"body":33,"breadcrumbs":5,"title":2},"153":{"body":25,"breadcrumbs":7,"title":2},"154":{"body":8,"breadcrumbs":6,"title":1},"155":{"body":9,"breadcrumbs":6,"title":1},"156":{"body":15,"breadcrumbs":7,"title":2},"157":{"body":275,"breadcrumbs":6,"title":1},"158":{"body":8,"breadcrumbs":6,"title":1},"159":{"body":114,"breadcrumbs":7,"title":2},"16":{"body":53,"breadcrumbs":4,"title":2},"160":{"body":615,"breadcrumbs":8,"title":3},"161":{"body":16,"breadcrumbs":6,"title":1},"162":{"body":797,"breadcrumbs":8,"title":3},"163":{"body":9,"breadcrumbs":4,"title":2},"164":{"body":30,"breadcrumbs":7,"title":3},"165":{"body":14,"breadcrumbs":5,"title":1},"166":{"body":30,"breadcrumbs":6,"title":2},"167":{"body":71,"breadcrumbs":5,"title":1},"168":{"body":18,"breadcrumbs":7,"title":3},"169":{"body":109,"breadcrumbs":5,"title":1},"17":{"body":38,"breadcrumbs":4,"title":2},"170":{"body":58,"breadcrumbs":6,"title":2},"171":{"body":60,"breadcrumbs":6,"title":2},"172":{"body":39,"breadcrumbs":6,"title":2},"173":{"body":43,"breadcrumbs":5,"title":1},"174":{"body":73,"breadcrumbs":6,"title":2},"175":{"body":21,"breadcrumbs":6,"title":2},"176":{"body":10,"breadcrumbs":5,"title":1},"177":{"body":7,"breadcrumbs":5,"title":1},"178":{"body":53,"breadcrumbs":5,"title":1},"179":{"body":0,"breadcrumbs":7,"title":3},"18":{"body":11,"breadcrumbs":3,"title":1},"180":{"body":2,"breadcrumbs":6,"title":2},"181":{"body":9,"breadcrumbs":5,"title":1},"182":{"body":0,"breadcrumbs":7,"title":3},"183":{"body":36,"breadcrumbs":6,"title":2},"184":{"body":14,"breadcrumbs":6,"title":2},"185":{"body":62,"breadcrumbs":5,"title":1},"186":{"body":16,"breadcrumbs":5,"title":1},"187":{"body":29,"breadcrumbs":7,"title":3},"19":{"body":13,"breadcrumbs":3,"title":1},"2":{"body":17,"breadcrumbs":3,"title":2},"20":{"body":62,"breadcrumbs":3,"title":1},"21":{"body":333,"breadcrumbs":5,"title":3},"22":{"body":20,"breadcrumbs":4,"title":2},"23":{"body":77,"breadcrumbs":3,"title":1},"24":{"body":59,"breadcrumbs":3,"title":1},"25":{"body":171,"breadcrumbs":4,"title":2},"26":{"body":38,"breadcrumbs":4,"title":2},"27":{"body":152,"breadcrumbs":4,"title":2},"28":{"body":26,"breadcrumbs":3,"title":1},"29":{"body":36,"breadcrumbs":3,"title":1},"3":{"body":9,"breadcrumbs":3,"title":2},"30":{"body":65,"breadcrumbs":3,"title":1},"31":{"body":34,"breadcrumbs":4,"title":2},"32":{"body":21,"breadcrumbs":4,"title":2},"33":{"body":120,"breadcrumbs":4,"title":2},"34":{"body":43,"breadcrumbs":4,"title":2},"35":{"body":47,"breadcrumbs":6,"title":4},"36":{"body":13,"breadcrumbs":4,"title":2},"37":{"body":35,"breadcrumbs":4,"title":2},"38":{"body":54,"breadcrumbs":4,"title":2},"39":{"body":26,"breadcrumbs":5,"title":3},"4":{"body":44,"breadcrumbs":2,"title":1},"40":{"body":27,"breadcrumbs":6,"title":4},"41":{"body":84,"breadcrumbs":5,"title":3},"42":{"body":29,"breadcrumbs":5,"title":3},"43":{"body":47,"breadcrumbs":4,"title":2},"44":{"body":98,"breadcrumbs":4,"title":2},"45":{"body":53,"breadcrumbs":4,"title":2},"46":{"body":34,"breadcrumbs":3,"title":1},"47":{"body":26,"breadcrumbs":6,"title":4},"48":{"body":115,"breadcrumbs":6,"title":3},"49":{"body":80,"breadcrumbs":5,"title":1},"5":{"body":21,"breadcrumbs":2,"title":1},"50":{"body":59,"breadcrumbs":6,"title":2},"51":{"body":74,"breadcrumbs":6,"title":2},"52":{"body":39,"breadcrumbs":8,"title":4},"53":{"body":58,"breadcrumbs":5,"title":1},"54":{"body":89,"breadcrumbs":5,"title":1},"55":{"body":73,"breadcrumbs":5,"title":1},"56":{"body":35,"breadcrumbs":6,"title":2},"57":{"body":122,"breadcrumbs":6,"title":2},"58":{"body":36,"breadcrumbs":6,"title":2},"59":{"body":218,"breadcrumbs":6,"title":2},"6":{"body":39,"breadcrumbs":3,"title":2},"60":{"body":30,"breadcrumbs":5,"title":1},"61":{"body":70,"breadcrumbs":6,"title":2},"62":{"body":18,"breadcrumbs":5,"title":1},"63":{"body":9,"breadcrumbs":7,"title":3},"64":{"body":80,"breadcrumbs":7,"title":3},"65":{"body":80,"breadcrumbs":6,"title":2},"66":{"body":67,"breadcrumbs":6,"title":2},"67":{"body":32,"breadcrumbs":6,"title":2},"68":{"body":13,"breadcrumbs":6,"title":2},"69":{"body":41,"breadcrumbs":6,"title":2},"7":{"body":28,"breadcrumbs":4,"title":2},"70":{"body":96,"breadcrumbs":6,"title":2},"71":{"body":65,"breadcrumbs":6,"title":2},"72":{"body":106,"breadcrumbs":7,"title":3},"73":{"body":13,"breadcrumbs":6,"title":2},"74":{"body":279,"breadcrumbs":6,"title":2},"75":{"body":62,"breadcrumbs":7,"title":2},"76":{"body":96,"breadcrumbs":6,"title":1},"77":{"body":77,"breadcrumbs":7,"title":2},"78":{"body":72,"breadcrumbs":2,"title":1},"79":{"body":15,"breadcrumbs":3,"title":2},"8":{"body":32,"breadcrumbs":4,"title":1},"80":{"body":79,"breadcrumbs":3,"title":2},"81":{"body":31,"breadcrumbs":3,"title":2},"82":{"body":40,"breadcrumbs":3,"title":2},"83":{"body":55,"breadcrumbs":2,"title":1},"84":{"body":69,"breadcrumbs":2,"title":1},"85":{"body":19,"breadcrumbs":3,"title":2},"86":{"body":49,"breadcrumbs":2,"title":1},"87":{"body":108,"breadcrumbs":2,"title":1},"88":{"body":7,"breadcrumbs":3,"title":2},"89":{"body":102,"breadcrumbs":2,"title":1},"9":{"body":39,"breadcrumbs":4,"title":1},"90":{"body":160,"breadcrumbs":2,"title":1},"91":{"body":42,"breadcrumbs":2,"title":1},"92":{"body":42,"breadcrumbs":2,"title":1},"93":{"body":310,"breadcrumbs":3,"title":2},"94":{"body":104,"breadcrumbs":3,"title":1},"95":{"body":37,"breadcrumbs":4,"title":2},"96":{"body":84,"breadcrumbs":6,"title":4},"97":{"body":65,"breadcrumbs":6,"title":4},"98":{"body":26,"breadcrumbs":4,"title":1},"99":{"body":120,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"Matrix Relm4 on crates.io Relm4 docs Relm4 is an idiomatic GUI library inspired by Elm and based on gtk4-rs . It is a new version of relm that's built from scratch and is compatible with GTK4 and libadwaita . We believe that GUI development should be easy, productive and delightful. The gtk4-rs crate already provides everything you need to write modern, beautiful and cross-platform applications. Built on top of this foundation, Relm4 makes developing more idiomatic, simpler and faster and enables you to become productive in just a few hours.","breadcrumbs":"Introduction » Why Relm4","id":"0","title":"Why Relm4"},"1":{"body":"To work with Relm4, you should understand most basic language features of the Rust programming language. We recommend to at least be familiar with the content of the chapters 1, 3-6, 8, 10 and 13 of the Rust book . I also recommend reading the gtk4-rs book for getting more insight into development with gtk4-rs. Yet, knowledge of GTK4 or gtk4-rs is not required in this book. Helpful links: How to install GTK4 for Rust gtk4-rs book gtk4-rs docs Cargo: Add the packages you need to your Cargo.toml: relm4 = \"0.9.1\"\nrelm4-components = \"0.9.1\"","breadcrumbs":"Introduction » Requirements","id":"1","title":"Requirements"},"10":{"body":"Input messages are a way for our components to receive information, think of them as our inbox 📬. Let's look at it with a simple MailboxComponent example: We have our Inbox, capable of receiving emails from other people. enum Inbox { GetEmail(Email),\n} These messages are received by our component and handled in the update function. fn update(&mut self, message: Self::Input, ...) { match message { Inbox::GetEmail(email) => self.emails.push(email) }\n} Our MailboxComponent can not only receive emails from other people, but we can also send emails to ourselves. Components work in the same way, they can either receive messages from other components or send themselves messages to update their own model.","breadcrumbs":"Basic concepts » Messages » Input » Input messages","id":"10","title":"Input messages"},"100":{"body":"In this chapter, we'll have a look at commands, which are a simple yet extremely powerful mechanism to offload both CPU-bound and I/O-bound tasks to a separate runtime. Commands are background tasks that can be spawned using a ComponentSender or FactorySender. They run until they return their result as a CommandOutput message that will be processed by the component. First, we define our message type so we can use it for the associated CommandOutput type in our component. #[derive(Debug)]\nenum CommandMsg { Data(RemoteData),\n} impl Component for CommandModel { type CommandOutput = CommandMsg; Note: This only works with the Component trait. The simplified SimpleComponent trait doesn't support commands. In our update function, we start a new command using the oneshot_command() method. This method allows us to spawn a future that will yield exactly one CommandOutput message at completion. From the command, we call an asynchronous function that will handle the web request for us. Once the future completes, the command returns a CommandMsg. fn update(&mut self, msg: Self::Input, sender: ComponentSender, _: &Self::Root) { match msg { CommandModelMsg::FetchData => { sender.oneshot_command(async { // Run async background task CommandMsg::Data(fetch_data().await) }); } } } Now, we can process the CommandMsg similar to regular app updates. The method we use is called update_cmd() and is very similar to the regular update() function. Only the message type is CommandOutput instead of Input. From here, we can simply assign the result of the web request to our model. fn update_cmd( &mut self, message: Self::CommandOutput, _sender: ComponentSender, _: &Self::Root, ) { match message { CommandMsg::Data(data) => self.remote_data = data, } } That's it! It's really as simple as starting a task and processing a message on completion. With the command() method, you are even more flexible because you can send multiple messages.","breadcrumbs":"Threads and async » Commands » Commands","id":"100","title":"Commands"},"101":{"body":"You can use commands for synchronous operations, too. Compared to the asynchronous methods, we need to add the spawn_ prefix to the method name to get the synchronous version. Then, you can just pass a closure or a function pointer as task. fn update(&mut self, msg: Self::Input, sender: ComponentSender, _: &Self::Root) { match msg { CommandModelMsg::FetchData => { sender.spawn_oneshot_command(|| { // Run CPU-bound background task CommandMsg::Data(compute_result()) }); } } } The rest is identical to the asynchronous version. fn update_cmd( &mut self, message: Self::CommandOutput, _sender: ComponentSender, _: &Self::Root, ) { match message { CommandMsg::Data(data) => self.remote_data = data, } }","breadcrumbs":"Threads and async » Commands » Synchronous tasks","id":"101","title":"Synchronous tasks"},"102":{"body":"Commands run on a tokio runtime. If you spawn a lot of commands in your application or want to fine-tune the runtime, you can set two static variables at the start of your main function to override the default value. For example, Relm4 only uses one thread for asynchronous background tasks, which might not be enough. Setting RELM_THREADS to 4 will increase the thread count by 3 additional threads. Note: Setting the static variables must be done early. As soon as the runtime is initialized (which happens when it's accessed for the first time), the values cannot be changed anymore.","breadcrumbs":"Threads and async » Commands » Configuration","id":"102","title":"Configuration"},"103":{"body":"Asynchronous components and factories are almost identical compared to regular components and factories. The only major difference is that they have asynchronous init, update and update_cmd methods. This allows you to await almost everywhere from within the component. The app we will write in this chapter is also available here . Run cargo run --example simple_async from the example directory if you want to see the code in action. Because Rust doesn't support async traits yet, we need macros to add support for this feature. To tell the component macro that we're using an async trait, we pass the async parameter to it. The component macro will then utilize the async_trait crate behind the scenes to make everything work. Also, we need to use AsyncComponent instead of Component as trait. Apart from that, the first section is identical. Similarly, the factory macro needs the async parameter for async factories and the trait changes from FactoryComponent to AsyncFactoryComponent. #[relm4::component(async)]\nimpl AsyncComponent for App { type Init = u8; type Input = Msg; type Output = (); type CommandOutput = (); Most functions of async component and factory traits are asynchronous, which allows us to await on futures within those functions. Apart from that, only a couple of types need to be adjusted for the async versions of the traits, for example AsyncComponentSender and AsyncComponentParts. async fn init( counter: Self::Init, root: Self::Root, sender: AsyncComponentSender, ) -> AsyncComponentParts { tokio::time::sleep(Duration::from_secs(1)).await; let model = App { counter }; // Insert the code generation of the view! macro here let widgets = view_output!(); AsyncComponentParts { model, widgets } } Awaiting in the init function allows us to perform a late initialization. Depending on how you implement the init function, it might take a long time to complete. Not showing anything in this case can look very odd. Therefore, Relm4 allows you to specify widgets that will be displayed while your async component is initialized. If your init function doesn't await or completes quickly, you don't need to implement init_loading_widgets. fn init_loading_widgets(root: Self::Root) -> Option { view! { #[local] root { set_title: Some(\"Simple app\"), set_default_size: (300, 100), // This will be removed automatically by // LoadingWidgets when the full view has loaded #[name(spinner)] gtk::Spinner { start: (), set_halign: gtk::Align::Center, } } } Some(LoadingWidgets::new(root, spinner)) } In this case, we do some basic initialization of our root widget upfront and also add a Spinner for a nice loading animation. As soon as the init function returns, the temporary spinner will be removed automatically and the widgets from the view! macro will be inserted instead. Finally, the update function completes the trait implementation. Notably, awaiting slow futures will block the processing of further messages. In other words, the update function can only process one message afters the other. Because we use async however, this only affects each async component individually and all other components won't be affected. If you want to process multiple messages at the same time, you should consider using commands. async fn update( &mut self, msg: Self::Input, _sender: AsyncComponentSender, _root: &Self::Root, ) { tokio::time::sleep(Duration::from_secs(1)).await; match msg { Msg::Increment => { self.counter = self.counter.wrapping_add(1); } Msg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }","breadcrumbs":"Threads and async » Async components and factories » Async components and factories","id":"103","title":"Async components and factories"},"104":{"body":"use std::time::Duration; use gtk::prelude::*;\nuse relm4::{ component::{AsyncComponent, AsyncComponentParts, AsyncComponentSender}, gtk, loading_widgets::LoadingWidgets, view, RelmApp, RelmWidgetExt,\n}; struct App { counter: u8,\n} #[derive(Debug)]\nenum Msg { Increment, Decrement,\n} #[relm4::component(async)]\nimpl AsyncComponent for App { type Init = u8; type Input = Msg; type Output = (); type CommandOutput = (); view! { gtk::Window { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => Msg::Increment, }, gtk::Button { set_label: \"Decrement\", connect_clicked => Msg::Decrement, }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } fn init_loading_widgets(root: Self::Root) -> Option { view! { #[local] root { set_title: Some(\"Simple app\"), set_default_size: (300, 100), // This will be removed automatically by // LoadingWidgets when the full view has loaded #[name(spinner)] gtk::Spinner { start: (), set_halign: gtk::Align::Center, } } } Some(LoadingWidgets::new(root, spinner)) } async fn init( counter: Self::Init, root: Self::Root, sender: AsyncComponentSender, ) -> AsyncComponentParts { tokio::time::sleep(Duration::from_secs(1)).await; let model = App { counter }; // Insert the code generation of the view! macro here let widgets = view_output!(); AsyncComponentParts { model, widgets } } async fn update( &mut self, msg: Self::Input, _sender: AsyncComponentSender, _root: &Self::Root, ) { tokio::time::sleep(Duration::from_secs(1)).await; match msg { Msg::Increment => { self.counter = self.counter.wrapping_add(1); } Msg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.simple_async\"); app.run_async::(0);\n}","breadcrumbs":"Threads and async » Async components and factories » The complete code","id":"104","title":"The complete code"},"105":{"body":"Option Synchronous Async Non-blocking !Send Workers ✅ ❌ ❌ ❌ Async components and factories ❌ ✅ ❌ ✅ Commands ✅ ✅ ✅ ❌ In this context, non-blocking means you can have run multiple instances at the same time. !Send means that the types involved don't need to implement Send so you can use widgets or Rc for example.","breadcrumbs":"Threads and async » Overview » Overview","id":"105","title":"Overview"},"106":{"body":"Async components and factories: Run asynchronous tasks on the main runtime Allow other components to keep running while awaiting futures Await during initialization or updates Commands: Run tasks on a runtime in the background Supports both synchronous and asynchronous tasks Run several tasks in parallel Drop tasks as soon as the component is destroyed Workers: Handle IO-bound or CPU-intensive tasks one at the time on a different thread The update function should be executed in another thread You need a model to store state for processing messages","breadcrumbs":"Threads and async » Overview » Summary","id":"106","title":"Summary"},"107":{"body":"In this chapter, we will implement a simple alert dialog as a reusable child component. The alert example in the Relm4 repository implements a simple app for the alert component that we will write in this chapter. It's an other variant of a counter app, yet this time a dialog will be displayed if the counter does not match 42 when closing. The main difference in the implementation is, that the dialog is implemented as component that can be reused in other applications. App screenshot dark This is how the dialog looks like in the alert example: App screenshot dark If you want to see an alert component very similar to the one we will write in this chapter, have a look at the “alert” example . Run cargo run --example alert from the relm4-components/examples directory if you want to see the code in action.","breadcrumbs":"Child components » Child components","id":"107","title":"Child components"},"108":{"body":"The alert component is defined similar to the other components we've implemented in this book. Our model stores whether the component is visible and the configuration. /// Alert dialog component.\npub struct Alert { settings: AlertSettings, is_active: bool,\n} We define a Widgets, Init, Input and Output type as usual. type Widgets = AlertWidgets; type Init = AlertSettings; type Input = AlertMsg; type Output = AlertResponse; The Init param is a settings object that is used to configure the component. This maximizes the reusability of the component by letting it adapt to different use-cases. /// Configuration for the alert dialog component\npub struct AlertSettings { /// Large text pub text: String, /// Optional secondary, smaller text pub secondary_text: Option, /// Modal dialogs freeze other windows as long they are visible pub is_modal: bool, /// Sets color of the accept button to red if the theme supports it pub destructive_accept: bool, /// Text for confirm button pub confirm_label: String, /// Text for cancel button pub cancel_label: String, /// Text for third option button. If [`None`] the third button won't be created. pub option_label: Option,\n} In the Input type, this component uses #[doc(hidden)] on the Response variant. This is a useful pattern for component-internal messages that are not intended to be sent by outside callers. This allows us to update the component when the underlying dialog reports a response, but not display the Response variant in the component's documentation. /// Messages that can be sent to the alert dialog component\n#[derive(Debug)]\npub enum AlertMsg { /// Message sent by the parent to view the dialog Show, #[doc(hidden)] Response(gtk::ResponseType),\n} The Output type allows us to report the user's response back to a parent component. /// User action performed on the alert dialog.\n#[derive(Debug)]\npub enum AlertResponse { /// User clicked confirm button. Confirm, /// User clicked cancel button. Cancel, /// User clicked user-supplied option. Option,\n} The update function handles the Show message from our parent component and the Response messages generated by user interactions. It also sends the appropriate messages to the parent through the output sender. fn update(&mut self, input: AlertMsg, sender: ComponentSender) { match input { AlertMsg::Show => { self.is_active = true; } AlertMsg::Response(ty) => { self.is_active = false; sender .output(match ty { gtk::ResponseType::Accept => AlertResponse::Confirm, gtk::ResponseType::Other(_) => AlertResponse::Option, _ => AlertResponse::Cancel, }) .unwrap(); } } } When initializing the model, we conditionally set up some widgets based on the settings passed by the caller. We set is_active to false since the dialog is not currently displayed. fn init( settings: AlertSettings, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Alert { settings, is_active: false, }; let widgets = view_output!(); if let Some(option_label) = &model.settings.option_label { widgets .dialog .add_button(option_label, gtk::ResponseType::Other(0)); } if model.settings.destructive_accept { let accept_widget = widgets .dialog .widget_for_response(gtk::ResponseType::Accept) .expect(\"No button for accept response set\"); accept_widget.add_css_class(\"destructive-action\"); } ComponentParts { model, widgets } } Lastly, the view. Note that the component connects to the response signal of the underlying dialog and sends an input to itself when a response is received. view! { #[name = \"dialog\"] gtk::MessageDialog { set_message_type: gtk::MessageType::Question, #[watch] set_visible: model.is_active, connect_response[sender] => move |_, response| { sender.input(AlertMsg::Response(response)); }, // Apply configuration set_text: Some(&model.settings.text), set_secondary_text: model.settings.secondary_text.as_deref(), set_modal: model.settings.is_modal, add_button: (&model.settings.confirm_label, gtk::ResponseType::Accept), add_button: (&model.settings.cancel_label, gtk::ResponseType::Cancel), } }","breadcrumbs":"Child components » The alert component","id":"108","title":"The alert component"},"109":{"body":"With the component complete, let's use it! struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement, CloseRequest, Save, Close, Ignore,\n} #[relm4::component]\nimpl SimpleComponent for App { type Input = AppMsg; type Output = (); type Init = (); view! { main_window = gtk::ApplicationWindow { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop }, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, append = >k::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, append = >k::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, append = >k::Label { set_margin_all: 5, #[watch] set_label: &format!(\"Counter: {}\", model.counter), }, append = >k::Button { set_label: \"Close\", connect_clicked[sender] => move |_| { sender.input(AppMsg::CloseRequest); }, }, }, } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } AppMsg::Save => { println!(\"* Open save dialog here *\"); } AppMsg::Close => { relm4::main_application().quit(); } AppMsg::Ignore => (), } } fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } }\n} fn convert_alert_response(response: AlertResponse) -> AppMsg { match response { AlertResponse::Confirm => AppMsg::Close, AlertResponse::Cancel => AppMsg::Ignore, AlertResponse::Option => AppMsg::Save, }\n} fn main() { let app = RelmApp::new(\"relm4.example.alert\"); app.run::(());\n} This is mostly stuff that we've already done in previous chapters, but there are a few additional things to know about interacting with child components. Notably, we need to wrap the types of the child components in Controllers to be able to store them in the App model. struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} We initialize them with the builder pattern in the init method. fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } } We call transient_for(root) on the builder to indicate to GTK that our root widget is transient for the main application window. This allows window managers to handle the dialog window differently, e.g. by drawing it on top of other windows. See the set_transient_for documentation for more information. AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } That's it! You can find more examples of reusable components in the relm4-components crate here . You can also contribute your own reusable components to relm4-components :)","breadcrumbs":"Child components » Usage","id":"109","title":"Usage"},"11":{"body":"Output messages are sent by components to other components and handled differently depending on the type of components that receives them. We can think of them as our outbox 🚚. Let's take our previous MailboxComponent example and add the following. enum Outbox { SendEmail(Email),\n} We can modify our previous example for forward the emails to somebody else. fn update(&mut self, message: Self::Input, sender: ComponentSender) { match message { Inbox::GetEmail(email) => sender.output(Outbox::SendEmail(email)), }\n} Usually, output messages are handled by the parent component, which is the component that creates and stores our MailboxComponent. You can think of it like a tree with one component at the root and many child components that branch out.","breadcrumbs":"Basic concepts » Messages » Output » Output messages","id":"11","title":"Output messages"},"110":{"body":"Let’s review all our code in one piece one more time to see how all these parts work together: use gtk::prelude::*;\nuse relm4::prelude::*;\nuse relm4::Controller; /// Configuration for the alert dialog component\npub struct AlertSettings { /// Large text pub text: String, /// Optional secondary, smaller text pub secondary_text: Option, /// Modal dialogs freeze other windows as long they are visible pub is_modal: bool, /// Sets color of the accept button to red if the theme supports it pub destructive_accept: bool, /// Text for confirm button pub confirm_label: String, /// Text for cancel button pub cancel_label: String, /// Text for third option button. If [`None`] the third button won't be created. pub option_label: Option,\n} /// Alert dialog component.\npub struct Alert { settings: AlertSettings, is_active: bool,\n} /// Messages that can be sent to the alert dialog component\n#[derive(Debug)]\npub enum AlertMsg { /// Message sent by the parent to view the dialog Show, #[doc(hidden)] Response(gtk::ResponseType),\n} /// User action performed on the alert dialog.\n#[derive(Debug)]\npub enum AlertResponse { /// User clicked confirm button. Confirm, /// User clicked cancel button. Cancel, /// User clicked user-supplied option. Option,\n} /// Widgets of the alert dialog component.\n#[relm4::component(pub)]\nimpl SimpleComponent for Alert { type Widgets = AlertWidgets; type Init = AlertSettings; type Input = AlertMsg; type Output = AlertResponse; view! { #[name = \"dialog\"] gtk::MessageDialog { set_message_type: gtk::MessageType::Question, #[watch] set_visible: model.is_active, connect_response[sender] => move |_, response| { sender.input(AlertMsg::Response(response)); }, // Apply configuration set_text: Some(&model.settings.text), set_secondary_text: model.settings.secondary_text.as_deref(), set_modal: model.settings.is_modal, add_button: (&model.settings.confirm_label, gtk::ResponseType::Accept), add_button: (&model.settings.cancel_label, gtk::ResponseType::Cancel), } } fn init( settings: AlertSettings, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Alert { settings, is_active: false, }; let widgets = view_output!(); if let Some(option_label) = &model.settings.option_label { widgets .dialog .add_button(option_label, gtk::ResponseType::Other(0)); } if model.settings.destructive_accept { let accept_widget = widgets .dialog .widget_for_response(gtk::ResponseType::Accept) .expect(\"No button for accept response set\"); accept_widget.add_css_class(\"destructive-action\"); } ComponentParts { model, widgets } } fn update(&mut self, input: AlertMsg, sender: ComponentSender) { match input { AlertMsg::Show => { self.is_active = true; } AlertMsg::Response(ty) => { self.is_active = false; sender .output(match ty { gtk::ResponseType::Accept => AlertResponse::Confirm, gtk::ResponseType::Other(_) => AlertResponse::Option, _ => AlertResponse::Cancel, }) .unwrap(); } } }\n} struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement, CloseRequest, Save, Close, Ignore,\n} #[relm4::component]\nimpl SimpleComponent for App { type Input = AppMsg; type Output = (); type Init = (); view! { main_window = gtk::ApplicationWindow { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop }, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, append = >k::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, append = >k::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, append = >k::Label { set_margin_all: 5, #[watch] set_label: &format!(\"Counter: {}\", model.counter), }, append = >k::Button { set_label: \"Close\", connect_clicked[sender] => move |_| { sender.input(AppMsg::CloseRequest); }, }, }, } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } AppMsg::Save => { println!(\"* Open save dialog here *\"); } AppMsg::Close => { relm4::main_application().quit(); } AppMsg::Ignore => (), } } fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } }\n} fn convert_alert_response(response: AlertResponse) -> AppMsg { match response { AlertResponse::Confirm => AppMsg::Close, AlertResponse::Cancel => AppMsg::Ignore, AlertResponse::Option => AppMsg::Save, }\n} fn main() { let app = RelmApp::new(\"relm4.example.alert\"); app.run::(());\n}","breadcrumbs":"Child components » The complete code","id":"110","title":"The complete code"},"111":{"body":"Widget templates are a simple way to define reusable UI elements. When building complex UIs, they allow you to focus on the application logic instead of complex trees of widgets. Yet most importantly, widget templates help you to reduce redundant code. For example, if you use a widget with the same properties multiple times in your code, templates will make your code a lot shorter. The app we will write in this chapter is also available here . Run cargo run --example widget_template from the example directory if you want to see the code in action.","breadcrumbs":"Widget templates » Widget templates","id":"111","title":"Widget templates"},"112":{"body":"To define a widget template, you need to implement the WidgetTemplate trait for a new type. You could do this manually, but the easiest solution is to use the #[relm4::widget_template] attribute macro. The macro will create the type and implement the trait for you. For example, the following code block will create a template for a gtk::Box with a certain margin and custom CSS. #[relm4::widget_template]\nimpl WidgetTemplate for MyBox { view! { gtk::Box { set_margin_all: 10, // Make the boxes visible inline_css: \"border: 2px solid blue\", } }\n} Similarly, we can create a template for a gtk::Spinner that already spins when it's created. #[relm4::widget_template]\nimpl WidgetTemplate for MySpinner { view! { gtk::Spinner { set_spinning: true, } }\n} To create public templates, you can use #[relm4::widget_template(pub)], similar to the #[relm4::component(pub)] macro.","breadcrumbs":"Widget templates » Defining templates","id":"112","title":"Defining templates"},"113":{"body":"Templates are more than just pre-initialized widgets. They can also have children, which can be referred to later as template children. This is very useful if you use nested widget in you UI, because the template allows you to flatten the structure. In other words, no matter how deeply nested a template child is, it will always be accessible directly from the template. We'll see how this works in the next section, but first we'll create a deeply nested template. We use the templates we defined earlier by using the #[template] attribute. Also, we assign the name child_label to our last widget, which is all we need to make it a template child. In general, naming a widget in a template is all that's needed to make it a template child. #[relm4::widget_template]\nimpl WidgetTemplate for CustomBox { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, // Deeply nested! #[name = \"child_label\"] gtk::Label { set_label: \"This is a test\", } } } } } }\n}","breadcrumbs":"Widget templates » Template children","id":"113","title":"Template children"},"114":{"body":"To use templates in a component, we use the #[template] and #[template_child] attributes. In this case, we use the CustomBox type we just defined with the #[template] attribute we already used. To access its child_label template child, we only need to use the #[template_child] attribute and the name of the child. As you can see, we now have access to the child_label widget, which actually is wrapped into 4 gtk::Box widgets. We can even use assign or overwrite properties of the template and its children, similar to regular widgets. Here, we use the #[watch] attribute to update the label with the latest counter value. #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Widget template\"), set_default_width: 300, set_default_height: 100, #[template] CustomBox { gtk::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, #[template_child] child_label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), } }, } }","breadcrumbs":"Widget templates » Using templates","id":"114","title":"Using templates"},"115":{"body":"If you run this code, you will notice that the label appears above the two buttons, which is contrary to our widget definition. This happens because widget templates are initialized before other modifications happen. The CustomBox template will initialize its child_label and append it to its internal gtk::Box widget and only then the two buttons are added. However, you can work around this by using methods like prepend, append or insert_child_after (if you use a gtk::Box as container) or by splitting your templates into smaller ones. To make template children appear in the same order as they are used, widget templates would require dynamic initialization of its children. This would increase the complexity of the internal implementation by a lot (or might not be possible at all) and is therefore not planned at the moment.","breadcrumbs":"Widget templates » Some notes on orders","id":"115","title":"Some notes on orders"},"116":{"body":"use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{ gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent, WidgetTemplate,\n}; #[relm4::widget_template]\nimpl WidgetTemplate for MyBox { view! { gtk::Box { set_margin_all: 10, // Make the boxes visible inline_css: \"border: 2px solid blue\", } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for MySpinner { view! { gtk::Spinner { set_spinning: true, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for CustomBox { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, // Deeply nested! #[name = \"child_label\"] gtk::Label { set_label: \"This is a test\", } } } } } }\n} #[derive(Default)]\nstruct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Widget template\"), set_default_width: 300, set_default_height: 100, #[template] CustomBox { gtk::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, #[template_child] child_label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), } }, } } fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Self { counter }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.widget_template\"); app.run::(0);\n}","breadcrumbs":"Widget templates » The complete code","id":"116","title":"The complete code"},"117":{"body":"Starting from the version 0.6.2 , you can access nested elements on templates. Imagine a template called \"MainWindow\" which contains pages as Widget Templates: #[relm4::widget_template]\nimpl WidgetTemplate for MainWindow { view! { gtk::Window { set_title: Some(\"Nested Widget template\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, #[name(stk_pages)] gtk::Stack { set_margin_all: 7, #[template] #[name = \"home_page\"] add_child = &HomePage {} -> { set_name: \"main\", }, #[template] #[name = \"settings_page\"] add_child = &SettingsPage {} -> { set_name: \"settings\", }, }, }, } }\n} SettingsPage and HomePage are also a widget template: #[relm4::widget_template]\nimpl WidgetTemplate for HomePage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_go_settings\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"emblem-system-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for SettingsPage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_dark_mode\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"night-light-symbolic\"), }, }, #[name = \"btn_go_homepage\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"user-home-symbolic\"), }, }, } }\n} If you want to handle MainWindow->SettingsPage->btn_dark_mode's clicked event, you can simply do it like this: #[derive(Default)]\nstruct AppModel { current_page: &'static str,\n} #[derive(Debug)]\nenum Message { PageHome, PageSettings, DarkMode,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = Message; type Output = (); view! { #[template] MainWindow { #[template_child] settings_page.btn_dark_mode { connect_clicked => Message::DarkMode }, #[template_child] settings_page.btn_go_homepage { connect_clicked => Message::PageHome }, #[template_child] home_page.btn_go_settings { connect_clicked => Message::PageSettings }, #[template_child] stk_pages { #[watch] set_visible_child_name: model.current_page, } }, }","breadcrumbs":"Widget templates » Accessing Nested Template Elements » Accessing Nested Template Elements","id":"117","title":"Accessing Nested Template Elements"},"118":{"body":"use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmWidgetExt, SimpleComponent, WidgetTemplate}; #[relm4::widget_template]\nimpl WidgetTemplate for HomePage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_go_settings\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"emblem-system-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for SettingsPage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_dark_mode\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"night-light-symbolic\"), }, }, #[name = \"btn_go_homepage\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"user-home-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for MainWindow { view! { gtk::Window { set_title: Some(\"Nested Widget template\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, #[name(stk_pages)] gtk::Stack { set_margin_all: 7, #[template] #[name = \"home_page\"] add_child = &HomePage {} -> { set_name: \"main\", }, #[template] #[name = \"settings_page\"] add_child = &SettingsPage {} -> { set_name: \"settings\", }, }, }, } }\n} #[derive(Default)]\nstruct AppModel { current_page: &'static str,\n} #[derive(Debug)]\nenum Message { PageHome, PageSettings, DarkMode,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = Message; type Output = (); view! { #[template] MainWindow { #[template_child] settings_page.btn_dark_mode { connect_clicked => Message::DarkMode }, #[template_child] settings_page.btn_go_homepage { connect_clicked => Message::PageHome }, #[template_child] home_page.btn_go_settings { connect_clicked => Message::PageSettings }, #[template_child] stk_pages { #[watch] set_visible_child_name: model.current_page, } }, } fn init( _init_param: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Self { current_page: \"main\", }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Message, _sender: ComponentSender) { match msg { Message::DarkMode => { println!(\"Mode changed\"); } Message::PageHome => { self.current_page = \"main\"; } Message::PageSettings => { self.current_page = \"settings\"; } } }\n} fn main() {}","breadcrumbs":"Widget templates » Accessing Nested Template Elements » The complete code","id":"118","title":"The complete code"},"119":{"body":"The handling of CLI arguments in Relm4 has some specifics you should be aware of. The first one is that Relm4/GTK tries to parse the arguments again even if you parsed them yourself already. This means the program will crash with an error like Unknown option --non-gtk-arg. To fix this you can use the with_args method to provide the arguments the GTK app should parse. The easiest way is to just provide an empty Vec but this has the disadvantage that the standard GTK arguments don't work anymore. We will now make it work in combination with the popular clap crate. To be precise we will use the derive feature which you can learn about in the clap documentation but it works with the builder pattern too of course. To pass a Vec of GTK arguments we need to separate the arguments we want to consume ourselves from those we want to pass to GTK. In clap you can achieve this using a combination of allow_hyphen_values and trailing_var_arg . #[derive(Parser, Debug)]\n#[command(version, about, long_about = None)]\nstruct Args { /// some argument to test #[arg(long)] non_gtk_arg: bool, /// Unknown arguments or everything after -- gets passed through to GTK. #[arg(allow_hyphen_values = true, trailing_var_arg = true)] gtk_options: Vec,\n} Now in our main function we can parse the CLI arguments using Args::parse() and pass args.gtk_options to GTK/Relm4. The first argument is (as per convention) the program invocation so we need to add that first: let program_invocation = std::env::args().next().unwrap(); let mut gtk_args = vec![program_invocation]; gtk_args.extend(args.gtk_options.clone()); let app = RelmApp::new(\"relm4.test.helloworld_cli\"); app.with_args(gtk_args).run::(());","breadcrumbs":"Command Line Interfaces » Command Line Interfaces","id":"119","title":"Command Line Interfaces"},"12":{"body":"GTK4 provides widgets as building blocks for your UI, like buttons, input fields or text areas. They can visualize data and also receive user inputs. In Relm4, user inputs are usually directly translated into input messages for our components. It's important to understand that widgets behave similar to Rc . Most importantly, this means that: Cloning a widget doesn't create a new instance, but just increases the reference count. Widgets are kept alive automatically. Dropping widgets that are still used somewhere does not destroy them, but just decreases the reference count. Widgets are not thread-safe. Widgets don't implement Send and can only be used on the main thread.","breadcrumbs":"Basic concepts » Widgets » Widgets","id":"12","title":"Widgets"},"120":{"body":"To compile, run and pass arguments to the built binary in one command we can use cargo run -- and pass our arguments after that. If you wonder what the -- means: This is the end of options convention : \"The first -- argument that is not an option-argument should be accepted as a delimiter indicating the end of options. Any following arguments should be treated as operands, even if they begin with the '-' character.\" We can now look at the result using cargo run -- --help: Usage: cli [OPTIONS] [GTK_OPTIONS]... Arguments: [GTK_OPTIONS]... Unknown arguments or everything after -- gets passed through to GTK Options: --non-gtk-arg some argument to test -h, --help Print help -V, --version Print version This is the help text provided by clap. If you want to see the GTK help text you can use cargo run -- -- --help: Usage: cli [OPTION?] Help Options: -h, --help Show help options --help-all Show all help options --help-gapplication Show GApplication options And if the GTK option is unique and not used by your program the (second) -- is not needed anymore, e.g. cargo run -- --help-all: Usage: cli [OPTION?] Help Options: -h, --help Show help options --help-all Show all help options --help-gapplication Show GApplication options GApplication Options: --gapplication-service Enter GApplication service mode (use from D-Bus service files) Of course you can replace cargo run -- by your binary name later, e.g.: your-cool-app --help-all.","breadcrumbs":"Command Line Interfaces » Result","id":"120","title":"Result"},"121":{"body":"Here is a minimal working example code with some debug output: use clap::Parser;\nuse gtk::prelude::GtkWindowExt;\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, SimpleComponent}; struct AppModel {} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = (); type Output = (); view! { gtk::Window { set_title: Some(\"Hello world with CLI\"), set_default_width: 300, set_default_height: 100, gtk::Label { set_label: \"Hello world!\", } } } fn init( _init: Self::Init, root: Self::Root, _sender: ComponentSender, ) -> ComponentParts { let model = AppModel {}; let widgets = view_output!(); ComponentParts { model, widgets } }\n} #[derive(Parser, Debug)]\n#[command(version, about, long_about = None)]\nstruct Args { /// some argument to test #[arg(long)] non_gtk_arg: bool, /// Unknown arguments or everything after -- gets passed through to GTK. #[arg(allow_hyphen_values = true, trailing_var_arg = true)] gtk_options: Vec,\n} fn main() { let args = Args::parse(); dbg!(&args); let program_invocation = std::env::args().next().unwrap(); let mut gtk_args = vec![program_invocation]; gtk_args.extend(args.gtk_options.clone()); let app = RelmApp::new(\"relm4.test.helloworld_cli\"); app.with_args(gtk_args).run::(());\n}","breadcrumbs":"Command Line Interfaces » The complete code","id":"121","title":"The complete code"},"122":{"body":"So far, we only discussed which features Relm4 provides. Yet, Relm4 is based on GTK, which itself has many useful features. Let’s have a look at it! This is just an overview. I’ve linked the relevant sections of the gtk-rs book but if you want to get familiar with all the features, I recommend reading the book from the start.","breadcrumbs":"gtk-rs overview » gtk-rs overview","id":"122","title":"gtk-rs overview"},"123":{"body":"GTK is an object-oriented framework that uses the GObject library to implement objects. GObjects have some really useful features that we will discuss in the following sections.","breadcrumbs":"gtk-rs overview » GObjects","id":"123","title":"GObjects"},"124":{"body":"Like many other OOP frameworks or languages, GObjects can inherit from other GObjects. This is called subclassing. In the case of GTK, that’s really helpful because it allows us to create custom widgets. For example, you could use subclassing to create your own button widget that acts as a counter. Or you can create a custom application window that better suits your application. Read more about subclassing in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Subclassing","id":"124","title":"Subclassing"},"125":{"body":"Each GObject can have properties that work similar to the fields of a structure in Rust. You can set them and you can read (get) them. But one thing that's particularly cool is that properties can be bound to other properties. For example, you could bind the \"visible\" property of a widget to the \"active\" property of a gtk::ToggleButton. This would allow you to show or hide the widget using the toggle button and the best part is, that it's done fully automatically! Read more about properties in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Properties","id":"125","title":"Properties"},"126":{"body":"GObjects can not only have properties but also signals. Actually, we've been using signals all the time, for example, by using the connect_clicked method on a button. This method simply adds an event handler function for the \"click\" signal. You can create your own signals in custom widgets. You can also use emit to emit signals on you widgets manually. Read more about signals in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Signals","id":"126","title":"Signals"},"127":{"body":"Most applications need to store settings at some point. GTK makes that pretty simple. You can use gtk::Settings to store your settings and keep them stored after your app has been closed. Read more about settings in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Settings","id":"127","title":"Settings"},"128":{"body":"Relm4 has factories for generating widgets from collections of data. GTK has a similar mechanism that should be used for large list. Because GTK knows which widgets of a list are actually shown it can optimize the rendering and memory usage a lot better. Read more about lists in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Lists","id":"128","title":"Lists"},"129":{"body":"Relm4 leaves it up to you how to create your UI. You can do it manually like in our first app, you can do with the widget macro or you can use the interface builder from GTK. With composite templates, you can use a XML file to specify your widgets and properties. Read more about the composite templates in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Composite templates","id":"129","title":"Composite templates"},"13":{"body":"Components are the fundamental building blocks of Relm4. To create a component you need to implement the Component trait.","breadcrumbs":"Basic concepts » Components » Components","id":"13","title":"Components"},"130":{"body":"Some Relm4 apps require static assets or resources (such as icons or images) to function. In GTK apps, static assets are transformed into GResource bundles, which are then loaded by the app. This guide shows how to set up GResource bundles within a Relm4 project.","breadcrumbs":"Resource Bundles » Resource Bundles","id":"130","title":"Resource Bundles"},"131":{"body":"This demonstrates a Cargo-only approach to including resources (i.e. it does not require extra build tools like Meson, or out-of-band shell scripts).","breadcrumbs":"Resource Bundles » Cargo","id":"131","title":"Cargo"},"132":{"body":"We add the static resources (in this example, icon files), plus a gresource descriptor, to the project's data folder: data/ icons/ icon-foo.svg icon-bar.svg icons.gresource.xml The icons are placed under the data/icons directory. The icons.gresource.xml file looks like this (adapt it as required, e.g. using -symbolic icon names): \n icons/icon-foo.svg icons/icon-bar.svg \n","breadcrumbs":"Resource Bundles » data directory","id":"132","title":"data directory"},"133":{"body":"In Cargo.toml, we add a build dependency on glib-build-tools. This gives us access to the glib_build_tools::compile_resources function which we will need later: [package]\nname = \"foobar\" [build-dependencies]\nglib-build-tools = \"0.17.10\" Note: you should ensure that the glib-build-tools version aligns with the general GLib version you are building for.","breadcrumbs":"Resource Bundles » Cargo.toml","id":"133","title":"Cargo.toml"},"134":{"body":"In build.rs, we call the compile_resources function which creates a GResource bundle from the icons: use glib_build_tools::compile_resources; fn main() { compile_resources( &[\"data\"], \"data/icons.gresource.xml\", \"icons.gresource\", );\n}","breadcrumbs":"Resource Bundles » build.rs","id":"134","title":"build.rs"},"135":{"body":"In main.rs (or wherever you initialise your Relm4 app), we load the icons.gresource bundle that Cargo generates: fn initialize_custom_icons() { gio::resources_register_include!(\"icons.gresource\").unwrap(); let display = gdk::Display::default().unwrap(); let theme = gtk::IconTheme::for_display(&display); theme.add_resource_path(\"/com/example/Foobar/icons\");\n} fn main() { let app = RelmApp::new(\"com.example.Foobar\"); // (optional) initialize default icons relm4_icons::initialize_icons(); // custom icons initialize_custom_icons();\n} It should now be possible to reference the resources by name within your app, for example: view! { gtk::Button { set_icon_name: \"icon-foo\" }\n}","breadcrumbs":"Resource Bundles » main.rs","id":"135","title":"main.rs"},"136":{"body":"We recommend that you establish a CI build for your Relm4 app. This guide describes how to do it, and the caveats you must observe to make the build work.","breadcrumbs":"Continuous Integration guide » Continuous Integration","id":"136","title":"Continuous Integration"},"137":{"body":"Starting with Relm 0.6.1, you can set up a CI build for your app on GitHub Actions. We recommend that you use the gtk4-rs container approach, as shown below: name: Rust on: push: branches: [ \"main\" ] pull_request: branches: [ \"main\" ] jobs: build: runs-on: ubuntu-latest container: image: ghcr.io/gtk-rs/gtk4-rs/gtk4:latest # TODO enable minor version tags / pinning steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable - name: Build run: cargo build - name: Test run: cargo test Note: You can alternatively just run the cargo build on the ubuntu-latest base image. However, this will tie your Relm app's GNOME and GTK version to Ubuntu's 2-year LTS release cycle, so you will not be able to use newer GNOME / GTK versions in the meantime. We therefore recommend that most projects use the gtk4-rs container approach instead.","breadcrumbs":"Continuous Integration guide » GitHub Actions","id":"137","title":"GitHub Actions"},"138":{"body":"There are quite a few of examples where the component macro is used in this book. Still, we haven't covered everything in the previous chapters, and it's also nice to have all the information in one place. This chapter serves as an exhaustive reference for the component macro syntax. The component attribute macro expects a trait implementation of SimpleComponent, Component, or FactoryComponent on a user-provided struct that holds the component's state.","breadcrumbs":"Component macro reference » The component macro reference","id":"138","title":"The component macro reference"},"139":{"body":"If you want to make the Widgets struct generated by the macro public, you can provide pub (or any other visibility) as an argument to the attribute macro. #[relm4::component(pub)]","breadcrumbs":"Component macro reference » Public widgets","id":"139","title":"Public widgets"},"14":{"body":"The Component trait is the base of every component inside Relm4, it defines how a component should behave, communicate and produce widgets.","breadcrumbs":"Basic concepts » Components » The Component trait","id":"14","title":"The Component trait"},"140":{"body":"The view! macro allows us to easily define widgets and mutate their properties.","breadcrumbs":"Component macro reference » The view! macro","id":"140","title":"The view! macro"},"141":{"body":"All components must have a root widget in their view! macro, such as gtk::Window or gtk::Box. Widgets are constructed by providing the type of the widget followed by curly braces. This will construct the widget using its Default implementation. view! { gtk::Window { ... }\n} Some, widgets don't have a Default implementation or it may be more convenient to use a constructor method. In this case, you can use the following syntax: // Constructor method\ngtk::Label::new(Some(\"Label from constructor method\")) { /* ... */ } // Builder pattern\ngtk::Label::builder() .label(\"Label from builder pattern\") .selectable(true) .build() { /* ... */ } You can also use regular functions. Because macro often needs to know the type of the widget for code generation, you may need to specify it. set_property_name = new_box() -> gtk::Box { ... }","breadcrumbs":"Component macro reference » Constructing widgets","id":"141","title":"Constructing widgets"},"142":{"body":"Child widgets are added by nesting the declarations. view! { gtk::Window { gtk::Box { } }\n} If another method is needed to assign a child, you can call it instead like this: gtk::Box { // Use append append = >k::Label { ... }\n} Use & in front of the widget type to assign a reference. A common mistake is to accidentally use : instead of = for assigning widgets. If the widget needs to be wrapped in another type (commonly Option), use the wrap attribute: #[wrap(Some)]\nset_property_name = gtk::Box { ... } Sometimes you need to pass additional arguments along with the widget, for example when calling gtk::Grid::attach . You can do this by providing the additional arguments in square brackets after the method: gtk::Grid { // Attach the label to a grid attach[0, 0, 1, 2]= >k::Label { ... }\n} This will expand to __grid.attach(__label, 0, 0, 1, 2)","breadcrumbs":"Component macro reference » Child widgets","id":"142","title":"Child widgets"},"143":{"body":"Widgets may be given a name with the name attribute. These names are accessible as fields on the Widgets struct generated by the macro. #[name = \"important_label\"]\ngtk::Label { ... } // ... let widgets = view_output!();\nlet label = &widgets.important_label; Names can also be assigned with this syntax: set_child: important_label = gtk::Label { ... }","breadcrumbs":"Component macro reference » Naming widgets","id":"143","title":"Naming widgets"},"144":{"body":"The view macro allows you to include if and match statements for conditionally showing widgets. Internally, the macro will use a gtk::Stack, so you can also use different transition types . if model.value % 2 == 0 { gtk::Label { set_label: \"The value is even\", }, gtk::Label { set_label: \"The value is odd\", }\n} // Use a transition type to set an animation when the visible widget changes\n#[transition = \"SlideRight\"]\nmatch model.value { 0..=9 => { gtk::Label { set_label: \"The value is below 10\", }, } _ => { gtk::Label { set_label: \"The value is equal or above 10\", }, }\n} If your conditional widget uses a match statement over an enum, you can destructure the enum in the match arms to access its variables with the help of the #[track] or #[watch] macros: enum Foo { Bar(f32), Baz(String),\n} struct FooView { foo: Foo\n} impl Component for FooView { type Init = Foo; // snip view! { #[root] gtk::Box { append = match &model.foo { Foo::Bar(num_value) => { gtk::SpinButton { // adding the `watch` macro lets you reference the destructured variables #[watch] set_value: num_value } } Foo::Baz(str_value) => { gtk::Label { #[watch] set_text: &str_value } } } } } // snip\n} Please note: if you attempt to destructure in the normal way - without the track or watch macros - you will get a compilation error, and Rust will 'fail to see' the destructured variables at the point where your code uses them. This is due to limitations in Relm4's component initialization strategy. Please ensure that you use one of those macros to avoid this.","breadcrumbs":"Component macro reference » Conditional widgets","id":"144","title":"Conditional widgets"},"145":{"body":"Sometimes, methods used for assigning widgets return another widget. For example, gtk::Stack::add_child() allows you to add a widget to the stack, but also returns a gtk::StackPage widget. To get access to this widget, you can use a special syntax of the view macro: gtk::Stack { add_child = >k::Label { set_label: \"placeholder\", } -> { // Access the returned widgets (in this case gtk::StackPage) set_title: \"page title\", }\n} The returned widget can be named with the following syntax: method = &Widget { ... } -> NAME: RETURNED_TYPE { ... } and can be subsequently accessed via the Widgets struct.","breadcrumbs":"Component macro reference » Returned widgets","id":"145","title":"Returned widgets"},"146":{"body":"Properties are initialized and mutated by calling methods within the widget types. Check the documentation for each widget type to see what methods are available. Generally properties are set via setter methods, but any methods on the widget can also be called. Many of these methods are part of an extension trait associated with the widget type. These traits must be in scope to call their methods. For example, if you want to use the set_default_width method from the GtkWindowExt trait, you must import the trait directly or glob import it from the prelude (use gtk::prelude::*;). To initialize a property with a value: set_property_name: value, Initialize a property only if its value is Some, and do nothing if it's None: set_property_name?: value, Call a method that has multiple arguments: set_property_name: (value1, value2, ...), Initialize and automatically update a property. #[watch]\nset_property_name: (value1, value2, ...), Initialize and automatically update a property with a tracker. The track_expression can be any expression that returns a bool. If it's true, it indicates that the method should be called: #[track(track_expression)]\nset_property_name: (value1, value2, ...), Initialize a property by iterating over an iterator. You can use this for repeated calls to setter functions, like add_class_name in case you have multiple class names in a Vec. #[iterate]\nset_property_name: iterator,","breadcrumbs":"Component macro reference » Properties","id":"146","title":"Properties"},"147":{"body":"It is possible that several traits implement the same method for a type. If both traits are in scope and you want to use the duplicated method name, you need to tell Rust which trait it should use. To specify the intended trait, use the TraitName::method syntax, similar to Rust's fully qualified syntax for trait disambiguation . You can also use the full path of the trait if desired.","breadcrumbs":"Component macro reference » Trait disambiguation","id":"147","title":"Trait disambiguation"},"148":{"body":"When connecting signals emitted by widgets you can clone fields that you need in the closure (for example, the component sender) by listing the corresponding fields in square brackets. connect_name[cloned_var1, cloned_var2, ...] => move |arg1, arg2, ...| { ... } There is a shorthand for sending a message per event handlers like ComponentSender or AsyncComponentSender. connect_clicked => AppMsg::Increase, A member of a struct or the result of a method can also be used inside the closure by assigning it to a variable. connect_name[sender = components.sender.clone()] => move |...| { ... }","breadcrumbs":"Component macro reference » Signals","id":"148","title":"Signals"},"149":{"body":"Some signals are not only emitted after a user interaction, but also when you change values though your code, for example by using #[watch]. This might not be the desired behavior and can even cause your application to freeze under certain circumstances. To avoid this, you can name signal handlers by using an @ and a name after the signal closure. Then, you can use the signal handler name in the #[block_signal(handler_name)] attribute to deactivate the signal handler while you edit a value. gtk::ToggleButton { set_label: \"Counter is even\", #[watch] #[block_signal(toggle_handler)] set_active: counter.value % 2 == 0, connect_toggled[sender] => move |_| { sender.input(AppMsg::Increment); } @toggle_handler, },","breadcrumbs":"Component macro reference » Blocking signals temporarily","id":"149","title":"Blocking signals temporarily"},"15":{"body":"The SimpleComponent trait is a convenience trait that implements the Component trait, but removes some advanced features that are not relevant for most use-cases. For each implementation of SimpleComponent, Relm4 will automatically implement Component as well. Thus, it can also be used instead of Component. This mechanism is called blanket implementation and is used for traits like From in the standard library as well.","breadcrumbs":"Basic concepts » Components » The SimpleComponent trait","id":"15","title":"The SimpleComponent trait"},"150":{"body":"Sometimes the macro isn't flexible enough. In this case, you can always use manual code that will not be modified by the macro. Here's a list of all the options available. #[relm4_macros::component]\nimpl SimpleComponent for App { // ... view! { // ... } additional_fields! { // ... } fn pre_view() { // ... } fn post_view() { // ... }\n}","breadcrumbs":"Component macro reference » Manual code","id":"150","title":"Manual code"},"151":{"body":"The widgets struct is automatically generated by the macro, but you can also add fields manually. additional_fields! { test: u8,\n} Initialize the variable in the init function by naming a local variable like your custom field. let test = 0; let widgets = view_output!();","breadcrumbs":"Component macro reference » Add more fields to your widgets","id":"151","title":"Add more fields to your widgets"},"152":{"body":"You can also implement your own view logic, which will be added to the view code that the macro generates. Code inside pre_view() will run before the code of the macro, and post_view() will run after it. Code inside these \"functions\" isn't like a normal function! The macro disallows returning early in pre_view to ensure that the code of the macro will always be executed.","breadcrumbs":"Component macro reference » Manual view","id":"152","title":"Manual view"},"153":{"body":"To better understand the component macro, we will examine how the different parts of the macro are translated into real Rust code (aka the macro expansion). Therefore, we will write a small app that uses as many component macro features as possible.","breadcrumbs":"Component macro reference » Macro expansion » Macro expansion","id":"153","title":"Macro expansion"},"154":{"body":"First, let's have a look at the parts of the code that are later used by the macro.","breadcrumbs":"Component macro reference » Macro expansion » The boilerplate","id":"154","title":"The boilerplate"},"155":{"body":"The model simply stores a counter. #[tracker::track]\nstruct AppModel { value: u8,\n}","breadcrumbs":"Component macro reference » Macro expansion » The model","id":"155","title":"The model"},"156":{"body":"The message type is the same as in our first app. It includes a message to increment and decrement the counter. #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n}","breadcrumbs":"Component macro reference » Macro expansion » The message type","id":"156","title":"The message type"},"157":{"body":"Before we break it down into smaller parts, let's take a look at the macro as a whole. If you're unfamiliar with the macro syntax, check out the previous chapter. There's a lot here, but that's because the macro supports a lot of functions! #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); view! { #[root] #[name(main_window)] gtk::Window { set_title: Some(\"Macro reference example\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, append: inc_button = >k::Button { set_label: \"Increment\", // Only set this if `icon_name` is Some set_icon_name?: icon_name, connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); } }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); } }, gtk::Grid { attach[1, 1, 1, 1] = >k::Label { // Alternative: #[track = \"counter.value % 10 == 0\"] #[track(counter.value % 10 == 0)] set_label: &format!(\"Grid works! ({})\", counter.value), } }, // A conditional widget // Alternative: #[transition = \"SlideLeft\"] #[transition(SlideLeft)] append = if counter.value % 2 == 0 { gtk::Label { set_label: \"Value is even\", } } else if counter.value % 3 == 0 { gtk::Label { set_label: \"Value is dividable by 3\", } } else { gtk::Label { set_label: \"Value is odd\", } }, #[transition = \"SlideRight\"] append: match_stack = match counter.value { (0..=2) => { gtk::Label { set_label: \"Value is smaller than 3\", } }, _ => { gtk::Label { set_label: \"Value is higher than 2\", } } }, append = >k::Label, gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(), gtk::Label::new(Some(\"Constructors work!\")), /// Counter label gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", counter.value), #[track] set_margin_all: counter.value.into(), }, gtk::ToggleButton { set_label: \"Counter is even\", #[watch] #[block_signal(toggle_handler)] set_active: counter.value % 2 == 0, connect_toggled[sender] => move |_| { sender.input(AppMsg::Increment); } @toggle_handler, }, #[local] local_label -> gtk::Label { set_opacity: 0.7, }, #[local_ref] local_ref_label -> gtk::Label { set_opacity: 0.7, set_size_request: (40, 40), }, } }, gtk::Window { set_title: Some(\"Another window\"), set_default_width: 300, set_default_height: 100, set_transient_for: Some(&main_window), // Empty args hide: (), #[watch] set_visible: counter.value == 42, #[name = \"my_label_name\"] gtk::Label { set_label: \"You made it to 42!\", } } } additional_fields! { test_field: u8, } // Initialize the UI. fn init( init: Self::Init, renamed_root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; // Set icon name randomly to Some(\"go-up-symbolic\") or None let icon_name = rand::random::().then_some(\"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model: counter, widgets, } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } }\n}","breadcrumbs":"Component macro reference » Macro expansion » The macro","id":"157","title":"The macro"},"158":{"body":"The macro expansion is not supposed to be readable, so the code might look a bit ugly.","breadcrumbs":"Component macro reference » Macro expansion » The expansion","id":"158","title":"The expansion"},"159":{"body":"The fields of the widgets struct cover all widgets we created, plus the additional fields we added manually. Named fields like main_window and inc_button keep their names. Unnamed fields will get automatically generated names with an unique ID. You should never refer to unnamed fields in your code because their names might change. At the end, we can find the additional field called test_field that we added manually. #[allow(dead_code)]\nstruct AppWidgets { #[allow(missing_docs)] main_window: gtk::Window, #[allow(missing_docs)] _gtk_box_14: gtk::Box, #[allow(missing_docs)] inc_button: gtk::Button, #[allow(missing_docs)] _gtk_button_0: gtk::Button, #[allow(missing_docs)] _gtk_grid_2: gtk::Grid, #[allow(missing_docs)] _gtk_label_1: gtk::Label, #[allow(missing_docs)] _conditional_widget_3: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_4: gtk::Label, #[allow(missing_docs)] _gtk_label_5: gtk::Label, #[allow(missing_docs)] _gtk_label_6: gtk::Label, #[allow(missing_docs)] match_stack: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_7: gtk::Label, #[allow(missing_docs)] _gtk_label_8: gtk::Label, #[allow(missing_docs)] _gtk_label_9: gtk::Label, #[allow(missing_docs)] _gtk_label_builder_10: gtk::Label, #[allow(missing_docs)] _gtk_label_new_11: gtk::Label, /// Counter label _gtk_label_12: gtk::Label, #[allow(missing_docs)] _gtk_togglebutton_13: gtk::ToggleButton, #[allow(missing_docs)] toggle_handler: relm4::gtk::glib::signal::SignalHandlerId, #[allow(missing_docs)] local_label: gtk::Label, #[allow(missing_docs)] local_ref_label: gtk::Label, #[allow(missing_docs)] _gtk_window_15: gtk::Window, #[allow(missing_docs)] my_label_name: gtk::Label, test_field: u8,\n}","breadcrumbs":"Component macro reference » Macro expansion » The widgets struct","id":"159","title":"The widgets struct"},"16":{"body":"For our first app, let's create something original: a counter app . GTK Light GTK Dark App screenshot light App screenshot dark Adwaita Light Adwaita Dark App screenshot light adw App screenshot dark adw In this app, we will have a counter which can be incremented and decremented by pressing the corresponding buttons. The app we will write in this chapter is also available here . Run cargo run --example simple_manual from the example directory if you want to see the code in action.","breadcrumbs":"Your first app » Your first app","id":"16","title":"Your first app"},"160":{"body":"The next thing the macro does is generating the SimpleComponent trait implementation block. The start of the implementation block is very similar to the implementation block we use in the macro. Most notably, the Root type is automatically inserted, as is the implementation of init_root. All attributes and comments you add to the widget macro before the impl block should be kept as well. impl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); type Widgets = AppWidgets; fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } } type Root = gtk::Window; fn init_root() -> Self::Root { let main_window = gtk::Window::default(); main_window } Initialization before the view_output entrypoint A large part of the code generated by the macro is dedicated to the initialization of the view. This code is \"expanded\" from the view_output!() entrypoint. First, let's find the code we wrote before the entry point: fn init( init: Self::Init, renamed_root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; let icon_name = rand::random::().then(|| \"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; Next, the macro initializes all widgets. Widgets defined by their type are initialized with their Default implementation. Any constructors or functions that are invoked manually are left unchanged in the output. let main_window = renamed_root.clone(); let _gtk_box_14 = gtk::Box::default(); let inc_button = gtk::Button::default(); let _gtk_button_0 = gtk::Button::default(); let _gtk_grid_2 = gtk::Grid::default(); let _gtk_label_1 = gtk::Label::default(); let _conditional_widget_3 = relm4::gtk::Stack::default(); _conditional_widget_3 .set_transition_type(relm4::gtk::StackTransitionType::SlideLeft); let _gtk_label_4 = gtk::Label::default(); let _gtk_label_5 = gtk::Label::default(); let _gtk_label_6 = gtk::Label::default(); let match_stack = relm4::gtk::Stack::default(); match_stack.set_transition_type(relm4::gtk::StackTransitionType::SlideRight); let _gtk_label_7 = gtk::Label::default(); let _gtk_label_8 = gtk::Label::default(); let _gtk_label_9 = gtk::Label::default(); let _gtk_label_builder_10 = gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(); let _gtk_label_new_11 = gtk::Label::new(Some(\"Constructors work!\")); let _gtk_label_12 = gtk::Label::default(); let _gtk_togglebutton_13 = gtk::ToggleButton::default(); let _gtk_window_15 = gtk::Window::default(); let my_label_name = gtk::Label::default(); Assigning properties Assigning properties looks pretty normal as well. In the middle we have an optional assignment that uses an if let statement to only assign properties that match Some(data). In the macro we marked this line with a ?. main_window.set_title(Some(\"Macro reference example\")); main_window.set_default_width(300); main_window.set_default_height(100); relm4::RelmContainerExt::container_add(&main_window, &_gtk_box_14); _gtk_box_14.set_orientation(gtk::Orientation::Vertical); _gtk_box_14.set_spacing(5); _gtk_box_14.set_margin_all(5); _gtk_box_14.append(&inc_button); inc_button.set_label(\"Increment\"); if let Some(__p_assign) = icon_name { inc_button.set_icon_name(__p_assign); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_button_0); _gtk_button_0.set_label(\"Decrement\"); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_grid_2); _gtk_grid_2.attach(&_gtk_label_1, 1, 1, 1, 1); _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_box_14.append(&_conditional_widget_3); _conditional_widget_3.add_named(&_gtk_label_4, Some(\"0\")); _gtk_label_4.set_label(\"Value is even\"); _conditional_widget_3.add_named(&_gtk_label_5, Some(\"1\")); _gtk_label_5.set_label(\"Value is dividable by 3\"); _conditional_widget_3.add_named(&_gtk_label_6, Some(\"2\")); _gtk_label_6.set_label(\"Value is odd\"); _gtk_box_14.append(&match_stack); match_stack.add_named(&_gtk_label_7, Some(\"0\")); _gtk_label_7.set_label(\"Value is smaller than 3\"); match_stack.add_named(&_gtk_label_8, Some(\"1\")); _gtk_label_8.set_label(\"Value is higher than 2\"); _gtk_box_14.append(&_gtk_label_9); Events Now the macro generates the code for connecting events. { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); inc_button .connect_clicked(move |_| { sender.input(AppMsg::Increment); }); } { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_button_0 .connect_clicked(move |_| { sender.input(AppMsg::Decrement); }); } let toggle_handler = { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_togglebutton_13 .connect_toggled(move |_| { sender.input(AppMsg::Increment); }) }; The code looks very similar to what we wrote in the macro. append: inc_button = >k::Button { set_label: \"Increment\", // Only set this if `icon_name` is Some set_icon_name?: icon_name, connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); } }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); } }, Most notably, the sender we put in the square brackets is cloned as we requested. Initialization after the view_output entrypoint At the end we find the construction of the widgets struct and the construction of the ComponentParts, which was after the view_output! entrypoint. let widgets = Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label: local_ref_label.clone(), _gtk_window_15, my_label_name, test_field, }; ComponentParts { model: counter, widgets, } UI updates The last step of the macro is to generate the update logic within the update_view function. Any code present in the pre_view and post_view \"functions\" will be expanded before or after the generated code. Note that the generated code returns a private struct to prevent early returns in pre_view from skipping the rest of the view update code. /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, sender: ComponentSender) { struct __DoNotReturnManually; let _no_manual_return: __DoNotReturnManually = (move || { #[allow(unused_variables)] let Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label, _gtk_window_15, my_label_name, test_field, } = widgets; #[allow(unused_variables)] let counter = self; if (counter.value % 10 == 0) { _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); } let __current_page = _conditional_widget_3 .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = match_stack .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); match_stack .set_visible_child_name( match counter.value { (0..=2) => { let __page_active: bool = (__current_page == \"0\"); \"0\" } _ => { let __page_active: bool = (__current_page == \"1\"); \"1\" } }, ); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_window_15.set_visible(counter.value == 42); (move || {})(); __DoNotReturnManually })(); } Generated UI updates Within the generated update logic, the macro generates its own code to support more efficient updates. Updates from the #[watch] attribute are unconditional. _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); Updates from expressions annotated with #[track] are conditional based on whether the value changed, or based on if an expression is a certain value. if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, );","breadcrumbs":"Component macro reference » Macro expansion » The SimpleComponent trait implementation","id":"160","title":"The SimpleComponent trait implementation"},"161":{"body":"Congrats for making it this far 🎉! You're now a real expert of Relm4! As you have seen, the macro is nothing magical. It simply works with the information you give it.","breadcrumbs":"Component macro reference » Macro expansion » Conclusion","id":"161","title":"Conclusion"},"162":{"body":"If you want to look at the whole macro expansion at once, here it is. #![feature(prelude_import)]\n//! This example is a modified version of the `macro_reference` example in the [main Relm4\n//! repository][Relm4 repo].\n//!\n//! [Relm4 repo]: https://github.com/Relm4/Relm4/blob/main/examples/macro_reference.rs\n#[prelude_import]\nuse std::prelude::rust_2021::*;\n#[macro_use]\nextern crate std;\nuse gtk::prelude::{ BoxExt, ButtonExt, GridExt, GtkWindowExt, OrientableExt, ToggleButtonExt, WidgetExt,\n};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, SimpleComponent, WidgetPlus};\nstruct AppModel { value: u8, tracker: u8,\n}\nimpl AppModel { #[allow(dead_code, non_snake_case)] /// Get an immutable reference to this field. fn get_value(&self) -> &u8 { &self.value } #[allow(dead_code, non_snake_case)] /// Get a mutable reference to this field. Marks the field as changed. fn get_mut_value(&mut self) -> &mut u8 { self.tracker |= Self::value(); &mut self.value } #[allow(dead_code, non_snake_case)] /// Use a closure to update this field. Marks the field as changed. fn update_value(&mut self, f: F) { self.tracker |= Self::value(); f(&mut self.value); } #[allow(dead_code, non_snake_case)] /// Get bit mask to look for changes on this field. fn value() -> u8 { 1 << 0usize } #[allow(dead_code, non_snake_case)] /// Setter method. Will mark field as changed. fn set_value(&mut self, value: u8) { if self.value != value { self.tracker |= Self::value(); } self.value = value; } #[allow(dead_code)] /// Use this to check whether any changes made to this struct. fn track_all() -> u8 { u8::MAX } #[allow(dead_code)] /// Use this to mark all fields of the struct as changed. fn mark_all_changed(&mut self) { self.tracker = u8::MAX; } /// Check for changes made to this struct. fn changed(&self, mask: u8) -> bool { self.tracker & mask != 0 } /// Resets the tracker of this struct. fn reset(&mut self) { self.tracker = 0; }\n}\nenum AppMsg { Increment, Decrement,\n}\n#[automatically_derived]\nimpl ::core::fmt::Debug for AppMsg { fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { match self { AppMsg::Increment => ::core::fmt::Formatter::write_str(f, \"Increment\"), AppMsg::Decrement => ::core::fmt::Formatter::write_str(f, \"Decrement\"), } }\n}\nstruct AppInit { counter: u8,\n}\n#[allow(dead_code)]\nstruct AppWidgets { #[allow(missing_docs)] main_window: gtk::Window, #[allow(missing_docs)] _gtk_box_14: gtk::Box, #[allow(missing_docs)] inc_button: gtk::Button, #[allow(missing_docs)] _gtk_button_0: gtk::Button, #[allow(missing_docs)] _gtk_grid_2: gtk::Grid, #[allow(missing_docs)] _gtk_label_1: gtk::Label, #[allow(missing_docs)] _conditional_widget_3: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_4: gtk::Label, #[allow(missing_docs)] _gtk_label_5: gtk::Label, #[allow(missing_docs)] _gtk_label_6: gtk::Label, #[allow(missing_docs)] match_stack: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_7: gtk::Label, #[allow(missing_docs)] _gtk_label_8: gtk::Label, #[allow(missing_docs)] _gtk_label_9: gtk::Label, #[allow(missing_docs)] _gtk_label_builder_10: gtk::Label, #[allow(missing_docs)] _gtk_label_new_11: gtk::Label, /// Counter label _gtk_label_12: gtk::Label, #[allow(missing_docs)] _gtk_togglebutton_13: gtk::ToggleButton, #[allow(missing_docs)] toggle_handler: relm4::gtk::glib::signal::SignalHandlerId, #[allow(missing_docs)] local_label: gtk::Label, #[allow(missing_docs)] local_ref_label: gtk::Label, #[allow(missing_docs)] _gtk_window_15: gtk::Window, #[allow(missing_docs)] my_label_name: gtk::Label, test_field: u8,\n}\n#[automatically_derived]\n#[allow(dead_code)]\nimpl ::core::fmt::Debug for AppWidgets { fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { let names: &'static _ = &[ \"main_window\", \"_gtk_box_14\", \"inc_button\", \"_gtk_button_0\", \"_gtk_grid_2\", \"_gtk_label_1\", \"_conditional_widget_3\", \"_gtk_label_4\", \"_gtk_label_5\", \"_gtk_label_6\", \"match_stack\", \"_gtk_label_7\", \"_gtk_label_8\", \"_gtk_label_9\", \"_gtk_label_builder_10\", \"_gtk_label_new_11\", \"_gtk_label_12\", \"_gtk_togglebutton_13\", \"toggle_handler\", \"local_label\", \"local_ref_label\", \"_gtk_window_15\", \"my_label_name\", \"test_field\", ]; let values: &[&dyn ::core::fmt::Debug] = &[ &&self.main_window, &&self._gtk_box_14, &&self.inc_button, &&self._gtk_button_0, &&self._gtk_grid_2, &&self._gtk_label_1, &&self._conditional_widget_3, &&self._gtk_label_4, &&self._gtk_label_5, &&self._gtk_label_6, &&self.match_stack, &&self._gtk_label_7, &&self._gtk_label_8, &&self._gtk_label_9, &&self._gtk_label_builder_10, &&self._gtk_label_new_11, &&self._gtk_label_12, &&self._gtk_togglebutton_13, &&self.toggle_handler, &&self.local_label, &&self.local_ref_label, &&self._gtk_window_15, &&self.my_label_name, &&self.test_field, ]; ::core::fmt::Formatter::debug_struct_fields_finish( f, \"AppWidgets\", names, values, ) }\n}\nimpl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); type Widgets = AppWidgets; fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } } type Root = gtk::Window; fn init_root() -> Self::Root { let main_window = gtk::Window::default(); main_window } /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, sender: ComponentSender) { struct __DoNotReturnManually; let _no_manual_return: __DoNotReturnManually = (move || { #[allow(unused_variables)] let Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label, _gtk_window_15, my_label_name, test_field, } = widgets; #[allow(unused_variables)] let counter = self; if (counter.value % 10 == 0) { _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); } let __current_page = _conditional_widget_3 .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = match_stack .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); match_stack .set_visible_child_name( match counter.value { (0..=2) => { let __page_active: bool = (__current_page == \"0\"); \"0\" } _ => { let __page_active: bool = (__current_page == \"1\"); \"1\" } }, ); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_window_15.set_visible(counter.value == 42); (move || {})(); __DoNotReturnManually })(); } fn init( init: Self::Init, renamed_root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; let icon_name = rand::random::().then(|| \"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; let main_window = renamed_root.clone(); let _gtk_box_14 = gtk::Box::default(); let inc_button = gtk::Button::default(); let _gtk_button_0 = gtk::Button::default(); let _gtk_grid_2 = gtk::Grid::default(); let _gtk_label_1 = gtk::Label::default(); let _conditional_widget_3 = relm4::gtk::Stack::default(); _conditional_widget_3 .set_transition_type(relm4::gtk::StackTransitionType::SlideLeft); let _gtk_label_4 = gtk::Label::default(); let _gtk_label_5 = gtk::Label::default(); let _gtk_label_6 = gtk::Label::default(); let match_stack = relm4::gtk::Stack::default(); match_stack.set_transition_type(relm4::gtk::StackTransitionType::SlideRight); let _gtk_label_7 = gtk::Label::default(); let _gtk_label_8 = gtk::Label::default(); let _gtk_label_9 = gtk::Label::default(); let _gtk_label_builder_10 = gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(); let _gtk_label_new_11 = gtk::Label::new(Some(\"Constructors work!\")); let _gtk_label_12 = gtk::Label::default(); let _gtk_togglebutton_13 = gtk::ToggleButton::default(); let _gtk_window_15 = gtk::Window::default(); let my_label_name = gtk::Label::default(); { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); inc_button .connect_clicked(move |_| { sender.input(AppMsg::Increment); }); } { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_button_0 .connect_clicked(move |_| { sender.input(AppMsg::Decrement); }); } let toggle_handler = { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_togglebutton_13 .connect_toggled(move |_| { sender.input(AppMsg::Increment); }) }; {} main_window.set_title(Some(\"Macro reference example\")); main_window.set_default_width(300); main_window.set_default_height(100); relm4::RelmContainerExt::container_add(&main_window, &_gtk_box_14); _gtk_box_14.set_orientation(gtk::Orientation::Vertical); _gtk_box_14.set_spacing(5); _gtk_box_14.set_margin_all(5); _gtk_box_14.append(&inc_button); inc_button.set_label(\"Increment\"); if let Some(__p_assign) = icon_name { inc_button.set_icon_name(__p_assign); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_button_0); _gtk_button_0.set_label(\"Decrement\"); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_grid_2); _gtk_grid_2.attach(&_gtk_label_1, 1, 1, 1, 1); _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_box_14.append(&_conditional_widget_3); _conditional_widget_3.add_named(&_gtk_label_4, Some(\"0\")); _gtk_label_4.set_label(\"Value is even\"); _conditional_widget_3.add_named(&_gtk_label_5, Some(\"1\")); _gtk_label_5.set_label(\"Value is dividable by 3\"); _conditional_widget_3.add_named(&_gtk_label_6, Some(\"2\")); _gtk_label_6.set_label(\"Value is odd\"); _gtk_box_14.append(&match_stack); match_stack.add_named(&_gtk_label_7, Some(\"0\")); _gtk_label_7.set_label(\"Value is smaller than 3\"); match_stack.add_named(&_gtk_label_8, Some(\"1\")); _gtk_label_8.set_label(\"Value is higher than 2\"); _gtk_box_14.append(&_gtk_label_9); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_builder_10); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_new_11); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_12); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_label_12.set_margin_all(counter.value.into()); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_togglebutton_13); _gtk_togglebutton_13.set_label(\"Counter is even\"); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &local_label); local_label.set_opacity(0.7); relm4::RelmContainerExt::container_add(&_gtk_box_14, &local_ref_label); local_ref_label.set_opacity(0.7); local_ref_label.set_size_request(40, 40); let __current_page = \"\"; _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = \"\"; match_stack .set_visible_child_name( match counter.value { (0..=2) => \"0\", _ => \"1\", }, ); _gtk_window_15.set_title(Some(\"Another window\")); _gtk_window_15.set_default_width(300); _gtk_window_15.set_default_height(100); _gtk_window_15.set_transient_for(Some(&main_window)); _gtk_window_15.hide(); _gtk_window_15.set_visible(counter.value == 42); relm4::RelmContainerExt::container_add(&_gtk_window_15, &my_label_name); my_label_name.set_label(\"You made it to 42!\"); let widgets = Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label: local_ref_label.clone(), _gtk_window_15, my_label_name, test_field, }; ComponentParts { model: counter, widgets, } }\n}","breadcrumbs":"Component macro reference » Macro expansion » The whole macro expansion","id":"162","title":"The whole macro expansion"},"163":{"body":"The sections of this chapter will help you to migrate your code from an older to newer version of Relm4.","breadcrumbs":"Migration guides » Migration guides","id":"163","title":"Migration guides"},"164":{"body":"Fortunately, there aren't many big breaking changes in version 0.4 despite a lot of improvements under the hood. In case you're wondering what happened to version 0.3, Relm4 now tries to follow the version number of gtk4-rs and therefore skipped v0.3.","breadcrumbs":"Migration guides » 0.2 to 0.4 » Migration from v0.2 to v0.4","id":"164","title":"Migration from v0.2 to v0.4"},"165":{"body":"The methods of FactoryPrototype were renamed to better match the rest of Relm4's traits. generate => init_view update => view get_root => root_widget","breadcrumbs":"Migration guides » 0.2 to 0.4 » FactoryPrototype","id":"165","title":"FactoryPrototype"},"166":{"body":"manual_view was renamed to post_view and pre_view was added to run code before the macro generated code in the view function. component! was removed, components are now accessible without extra code. parent! was added to access the parent widgets which previously required no extra code.","breadcrumbs":"Migration guides » 0.2 to 0.4 » widget macro","id":"166","title":"widget macro"},"167":{"body":"The Components trait now has a new method called connect_parent. This method doesn't do much more than passing the parent widgets down to individual components and originated unintentionally in the rework of the initialization process. Because this method is usually just repetitive code, you can now use the derive macro instead: #[derive(relm4::Components)]\nstruct AppComponents { header: RelmComponent, dialog: RelmComponent,\n} The derive macro will always use RelmWorker::with_new_thread() for workers. Also, RelmComponent::with_new_thread() was removed due to the restructuring. It's recommended to use workers or message handlers for blocking operations instead. If there's anything missing, let me know. You can simply open an issue on GitHub or write a message in the Matrix room .","breadcrumbs":"Migration guides » 0.2 to 0.4 » Components","id":"167","title":"Components"},"168":{"body":"Version 0.5 brings many exciting changes but also a few major breaking changes. In this chapter, all changes should be covered to help you migrating your existing code quickly.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Migration from v0.4 to v0.5","id":"168","title":"Migration from v0.4 to v0.5"},"169":{"body":"Component unifies several traits that existed before. It entirely replaces AppUpdate, ComponentUpdate, AsyncComponentUpdate, MessageHandler, MicroModel, MicroWidgets, Components and Widgets. Components are now more similar to MicroComponent which means they are much more flexible and don't need a typed connection to their parent component. This makes using the same component with different parent components much easier. Instead of accessing the parent model, you define Init as a type that includes all information to initialize the component. The life cycle has changed a bit, too. Initialization of the root widget . The reason behind this is to allow parent components to access the root widget before the rest of the component is initialized. Initialize the component itself and the widgets . This happens in one method now, which makes it easier especially for more difficult initializations. Regarding updates, there hasn't been a lot of changes. However you can now optionally update view and model at once using update_with_view . The shutdown method is called when the component is destroyed. Components don't have to live for the entire application lifespan anymore.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Components","id":"169","title":"Components"},"17":{"body":"Often, programming concepts are easier to understand when explained with examples or metaphors from the real world. To understand how Relm4 apps work, you can think about a computer as a person. Our job as a programmer is to ensure that the users of our app will be able to communicate with the computer through the UI. Since the computer can't understand our human language, it needs some help from us to get the communication going. Let's have a look at what we need to get this done!","breadcrumbs":"Your first app » Application architecture","id":"17","title":"Application architecture"},"170":{"body":"Components have three kinds of messages now: Input is the regular Msg type from the Model trait in 0.4. Output is the message type, that can be used to forward information to other components automatically (or () if you don't care about forwarding). You will find more information about initializing components in the next section. CmdOutput is the output of commands. Commands are futures that are executed in the background. They fully replace async workers. The result of this future is the CmdOutput message handled in update_cmd , similar to the regular update function. The send! macro is obsolete. Please use sender.input(msg) instead.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Senders and messages","id":"170","title":"Senders and messages"},"171":{"body":"Components are initialized in the init method of their parent. You simply call MyComponentType::builder() to get a ComponentBuilder . Then you launch the component by calling builder.launch(init_params) to receive a Connector . From the connector you can decide to automatically forward messages to another component or just detach the connector to get a Controller . The controller is the type you now store in the model of the parent component instead of creating a separate components struct. There's no Components trait necessary. For types that implement Component that don't have any widgets (such as implementers of the Worker trait), you can call detach_worker from a ComponentBuilder. This spawns the internal runtime on a separate thread and gives you a WorkerController .","breadcrumbs":"Migration guides » 0.4 to 0.5 » Initializing components","id":"171","title":"Initializing components"},"172":{"body":"SimpleComponent SimpleComponent is a simpler variant of Component that helps with the implementation of Component. Particularly, it doesn't support commands. Worker Worker is an even simpler variant of SimpleComponent that helps with the implementation of Component. Particularly, it doesn't support widgets and allows running the components update loop on a different thread by using detach_worker . This is the replacement for the previously separated RelmWorker type.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Helper traits","id":"172","title":"Helper traits"},"173":{"body":"Factories now work very similar to components. In fact, the new FactoryComponent trait that replaces FactoryPrototype is almost identical to the Component trait. Messages can now be optionally passed by using the forward_to_parent method. FactoryVec was entirely removed in favor of FactoryVecDeque. Edits to factories are now similar to Mutex and require a guard. When the guard is dropped, all changes are rendered automatically, so no render method is required anymore.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Factories","id":"173","title":"Factories"},"174":{"body":"In general, a lot of internal macros were moved to be just attributes like watch! and track! now written as #[watch] and #[track(optional_condition)]. Multiple arguments now don't need args!() but just () whereas tuples need two parenthesis (()). Wrapping widgets into Some is now also an attribute #[wrap(Some)]. Additional arguments are now passed with square brackets [] instead of parenthesis (). Cloning variables for closures is always done with square brackets [] instead of parenthesis (). Old New view! { gtk::HeaderBar { set_title_widget = Some(>k::Box) { append: group = >k::ToggleButton { set_label: watch!(model.label), connect_toggled(sender) => move |btn| { // ... }, }, } }\n} view! { gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { append: group = >k::ToggleButton { #[watch] set_label: model.label, connect_toggled[sender] => move |btn| { // ... }, }, } }\n}","breadcrumbs":"Migration guides » 0.4 to 0.5 » The view macro","id":"174","title":"The view macro"},"175":{"body":"The macro in now called #[component]. You need to use let widgets = view_output!(); in the init function to inject the code from the view macro. pre_init -> Code before view_output!(). post_init -> Code after view_output!().","breadcrumbs":"Migration guides » 0.4 to 0.5 » The widget macro","id":"175","title":"The widget macro"},"176":{"body":"Now you need to specify an application id and a generic parameter is required when calling run().","breadcrumbs":"Migration guides » 0.4 to 0.5 » RelmApp","id":"176","title":"RelmApp"},"177":{"body":"WidgetPlus::inline_css now takes &str as parameter instead of &[u8].","breadcrumbs":"Migration guides » 0.4 to 0.5 » Miscellaneous","id":"177","title":"Miscellaneous"},"178":{"body":"v0.4 v0.5 Model Component AppUpdate Component ComponentUpdate Component AsyncComponentUpdate Component MicroComponent Component MicroWidgets Component MessageHandler Component FactoryPrototype FactoryComponent Model::Msg Component::Input Model::Widgets Component::Widgets Model::Components removed Components Store a Controller for each component in your model parent_sender Forward output messages from one component to another by using Connector In case there's something missing, please let me know. You can simply open an issue on GitHub or write a message in the Matrix room .","breadcrumbs":"Migration guides » 0.4 to 0.5 » Summary","id":"178","title":"Summary"},"179":{"body":"","breadcrumbs":"Migration guides » 0.5 to 0.6 » Migration from v0.5 to v0.6","id":"179","title":"Migration from v0.5 to v0.6"},"18":{"body":"For our app, we just want to tell the computer to either increment or decrement a counter. enum AppMsg { Increment, Decrement,\n}","breadcrumbs":"Your first app » Messages","id":"18","title":"Messages"},"180":{"body":"FactoryComponent::output_to_parent_input() => FactoryComponent::forward_to_parent()","breadcrumbs":"Migration guides » 0.5 to 0.6 » Renamed methods","id":"180","title":"Renamed methods"},"181":{"body":"RelmActionGroup::add_action() now consumes the action Use RelmActionGroup::register_for_widget() and RelmActionGroup::register_for_main_application() instead of WidgetExt::insert_action_group()","breadcrumbs":"Migration guides » 0.5 to 0.6 » Actions","id":"181","title":"Actions"},"182":{"body":"","breadcrumbs":"Migration guides » 0.6 to 0.7 » Migration from v0.6 to v0.7","id":"182","title":"Migration from v0.6 to v0.7"},"183":{"body":"Switching between the Component and AsyncComponent traits has been a bit unpleasant in previous versions due to complex errors generated by the code generated by async-trait. To avoid this, the signatures of Component and AsyncComponent were unified. This means, that Component::init() and SimpleComponent::init() now take Self::Root as owned parameter instead of a reference (&Self::Root). In most places, this just means that you have to remove a &.","breadcrumbs":"Migration guides » 0.6 to 0.7 » Component changes","id":"183","title":"Component changes"},"184":{"body":"ParentInput and forward_to_parent() were removed from FactoryComponent and AsyncFactoryComponent. Instead, factories now support basically the same builder pattern as components.","breadcrumbs":"Migration guides » 0.6 to 0.7 » Factory changes","id":"184","title":"Factory changes"},"185":{"body":"Replace this: #[relm4::factory]\nimpl FactoryComponent for Counter { type ParentInput = AppMsg; fn forward_to_parent(output: Self::Output) -> Option { Some(match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }) } // ...\n} #[relm4::component]\nimpl SimpleComponent for App { // ... fn init( counter: Self::Init, root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::new(gtk::Box::default(), sender.input_sender()); // ... }\n} With this: #[relm4::component]\nimpl SimpleComponent for App { // ... fn init( counter: Self::Init, root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); // ... }\n}","breadcrumbs":"Migration guides » 0.6 to 0.7 » Example","id":"185","title":"Example"},"186":{"body":"set_global_css and set_global_css_from_file are now methods of RelmApp to prevent calling them before initializing GTK The drawing module was moved into the new abstractions module","breadcrumbs":"Migration guides » 0.6 to 0.7 » Other changes","id":"186","title":"Other changes"},"187":{"body":"Since 0.8 was released at the same day as 0.7, there are not many changes. It is worth noting though, that the async-trait crate was removed in favor of regular async traits available since Rust 1.75. This means that all manual uses of #[async_trait] for AsyncComponent or similar traits have to be removed.","breadcrumbs":"Migration guides » 0.7 to 0.8 » Migration from v0.7 to v0.8","id":"187","title":"Migration from v0.7 to v0.8"},"19":{"body":"For our counter app, the computer only needs to remember the counter value, so an u8 is all we need. struct AppModel { counter: u8,\n}","breadcrumbs":"Your first app » The model","id":"19","title":"The model"},"2":{"body":"If you find a mistake or something unclear in Relm4 or this book, let us know! Simply open up an issue or start a discussion over at GitHub or chat with us on Matrix .","breadcrumbs":"Introduction » Issues and feedback","id":"2","title":"Issues and feedback"},"20":{"body":"GTK4 offers the computer widgets that allow it to take input and to respond. Widgets are simply parts of an UI like buttons, input fields or text areas. To be able to update the widgets in our program, we can put them all into a struct. For our application, we use a window with two buttons to increase and decrease the counter and a label to display the counter value. We also need a box as a container to house our buttons and label, since a window can only have one child. In our case, we will only update the label when we increment or decrement the counter, so we don't really need to store everything inside the struct. struct AppWidgets { label: gtk::Label,\n} Although, if you want to, you can.","breadcrumbs":"Your first app » The widgets","id":"20","title":"The widgets"},"21":{"body":"The last step we need is to tell the computer how to initialize and update the widgets. All that is left to do is to implement the SimpleComponent trait for your model, which tells the computer exactly how to visualize its memory. Let's do this step by step. First, we'll have a look at the beginning of the trait impl. impl SimpleComponent for AppModel { The first thing you need to do is to define some generic types necessary to make our component work. /// The type of the messages that this component can receive. type Input = AppMsg; /// The type of the messages that this component can send. type Output = (); /// The type of data with which this component will be initialized. type Init = u8; /// The root GTK widget that this component will create. type Root = gtk::Window; /// A data structure that contains the widgets that you will need to update. type Widgets = AppWidgets; The types defined in the trait tell our component how it should communicate with other components and what type of widgets should be produced. The Root type is the outermost widget of the app. Components can choose this type freely, but the main component must use a Window. Since the window widget is our root widget, we are going to create it in the init_root function. fn init_root() -> Self::Root { gtk::Window::builder() .title(\"Simple app\") .default_width(300) .default_height(100) .build() } Next up, we want to initialize our UI and the model. Don't worry about the amount of manual code you need for handling widgets. In the next chapter, we'll see how this can be done easier. All of these widgets will be created in the init function. We get our Root window and the Init variables to create our widgets with. /// Initialize the UI and model. fn init( counter: Self::Init, window: Self::Root, sender: ComponentSender, ) -> relm4::ComponentParts { let model = AppModel { counter }; let vbox = gtk::Box::builder() .orientation(gtk::Orientation::Vertical) .spacing(5) .build(); let inc_button = gtk::Button::with_label(\"Increment\"); let dec_button = gtk::Button::with_label(\"Decrement\"); let label = gtk::Label::new(Some(&format!(\"Counter: {}\", model.counter))); label.set_margin_all(5); window.set_child(Some(&vbox)); vbox.set_margin_all(5); vbox.append(&inc_button); vbox.append(&dec_button); vbox.append(&label); inc_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Increment); } )); dec_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Decrement); } )); let widgets = AppWidgets { label }; ComponentParts { model, widgets } } First, we initialize each of our widgets, mostly by using builder patterns. Then we connect the widgets so that GTK4 knows how they are related to each other. The buttons and the label are added as children of the box, and the box is added as the child of the window. Next, we connect the \"clicked\" event for both buttons and send a message from the closures to the computer. To do this, we only need to move a cloned sender into the closures and send the message. Now every time we click our buttons, a message will be sent to update our counter! Of course, the computer needs to do more than just remembering things, it also needs to process information. Here, both the model and message types come into play. The update function of the SimpleComponent trait tells the computer how to process messages and how to update its memory. fn update(&mut self, message: Self::Input, _sender: ComponentSender) { match message { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } } wrapping_add(1) and wrapping_sub(1) are like +1 and -1, but don't panic on overflows. We see that the update function receives a message and updates the model according to your instructions. Still our UI will not update when the counter is changed. To do this, we need to implement the update_view function that modifies the UI according to the changes in the model. /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, _sender: ComponentSender) { widgets .label .set_label(&format!(\"Counter: {}\", self.counter)); }","breadcrumbs":"Your first app » Implement a component with SimpleComponent.","id":"21","title":"Implement a component with SimpleComponent."},"22":{"body":"The last step is to run the app we just wrote. To do so, we just need to initialize our model and pass it into RelmApp::new(). fn main() { let app = RelmApp::new(\"relm4.test.simple_manual\"); app.run::(0);\n} 🎉 Congratulations! You just wrote your first app with Relm4! 🎉","breadcrumbs":"Your first app » Running the App","id":"22","title":"Running the App"},"23":{"body":"Let's summarize what we learned in this chapter. A Relm4 application has three important types: The model type that stores the application state, the memory of our app. The message type that describes which information can be sent to update the model. The widgets type that stores our widgets. Also, there are two important functions: update receives a message and updates the model accordingly. update_view receives the updated model and updates the widgets accordingly. The app does all those things in a loop. It waits for messages and once a message is received, it runs update and then view. relm update loop Relm4 separates the data and the UI. The UI never knows which message was sent, but can only read the model. This might seem like a limitation, but it helps you to create maintainable, stable and consistent applications.","breadcrumbs":"Your first app » Summary","id":"23","title":"Summary"},"24":{"body":"I hope this chapter made everything clear for you :) If you found a mistake or there was something unclear, please open an issue here . As you have seen, initializing the UI was by far the largest part of our app, with roughly one half of the total code. In the next chapter, we will have a look at the relm4-macros crate, which provides a macro that helps us reduce the amount of code we need to implement the Widgets trait. As you might have noticed, storing inc_button, dec_button and vbox in our widgets struct is not necessary because GTK will keep them alive automatically. Therefore, we can remove them from AppWidgets to avoid compiler warnings.","breadcrumbs":"Your first app » Conclusion","id":"24","title":"Conclusion"},"25":{"body":"Let's review our code in one piece to see how all these parts work together: use gtk::glib::clone;\nuse gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; struct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} struct AppWidgets { label: gtk::Label,\n} impl SimpleComponent for AppModel { /// The type of the messages that this component can receive. type Input = AppMsg; /// The type of the messages that this component can send. type Output = (); /// The type of data with which this component will be initialized. type Init = u8; /// The root GTK widget that this component will create. type Root = gtk::Window; /// A data structure that contains the widgets that you will need to update. type Widgets = AppWidgets; fn init_root() -> Self::Root { gtk::Window::builder() .title(\"Simple app\") .default_width(300) .default_height(100) .build() } /// Initialize the UI and model. fn init( counter: Self::Init, window: Self::Root, sender: ComponentSender, ) -> relm4::ComponentParts { let model = AppModel { counter }; let vbox = gtk::Box::builder() .orientation(gtk::Orientation::Vertical) .spacing(5) .build(); let inc_button = gtk::Button::with_label(\"Increment\"); let dec_button = gtk::Button::with_label(\"Decrement\"); let label = gtk::Label::new(Some(&format!(\"Counter: {}\", model.counter))); label.set_margin_all(5); window.set_child(Some(&vbox)); vbox.set_margin_all(5); vbox.append(&inc_button); vbox.append(&dec_button); vbox.append(&label); inc_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Increment); } )); dec_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Decrement); } )); let widgets = AppWidgets { label }; ComponentParts { model, widgets } } fn update(&mut self, message: Self::Input, _sender: ComponentSender) { match message { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } } /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, _sender: ComponentSender) { widgets .label .set_label(&format!(\"Counter: {}\", self.counter)); }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple_manual\"); app.run::(0);\n}","breadcrumbs":"Your first app » The complete code","id":"25","title":"The complete code"},"26":{"body":"To simplify the implementation of the Component trait, let's use the relm4-macros crate! App screenshot dark The app will look and behave identically to our first app from the previous chapter. Only the implementation is different. The app we will write in this chapter is also available here . Run cargo run --example simple from the example directory if you want to see the code in action.","breadcrumbs":"The component macro » The component macro","id":"26","title":"The component macro"},"27":{"body":"The component macro will simplify creating the Widgets struct. The update code remains untouched, so we can reuse most of the code from the previous chapter. Let's have a look at how to define a component with the macro and go through the code step by step: #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => AppMsg::Increment }, gtk::Button::with_label(\"Decrement\") { connect_clicked => AppMsg::Decrement }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { counter }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} The associated types don't change. We still have to define the model, the input parameters, and the message types. However, the Widgets type is never explicitly defined in the code, but generated by the macro. And then... wait, where do we define the Root type? Actually, the macro knows that the outermost widget becomes automatically the root widget. Next up - the heart of the component macro - the nested view! macro. Here, we can easily define widgets and assign properties to them.","breadcrumbs":"The component macro » What's different","id":"27","title":"What's different"},"28":{"body":"As you see, we start with the gtk::Window which is our root. Then we open up brackets and assign properties to the window. There's not much magic here but actually set_title is a method provided by gtk4-rs. So technically, the macro creates code like this: window.set_title(Some(\"Simple app\"));","breadcrumbs":"The component macro » Properties","id":"28","title":"Properties"},"29":{"body":"We assign a child to the window by nesting another widget inside it. Widgets may be nested indefinitely: gtk::Box { Sometimes we want to use a constructor function to initialize our widgets. For the second button we used the gtk::Button::with_label function. This function returns a new button with the \"Decrement\" label already set, so we don't have to call set_label afterwards. gtk::Button::with_label(\"Decrement\") {","breadcrumbs":"The component macro » Widgets","id":"29","title":"Widgets"},"3":{"body":"All platforms supported by GTK4 are available for Relm4 as well: Linux Windows macOS","breadcrumbs":"Introduction » Platform support","id":"3","title":"Platform support"},"30":{"body":"To connect events, we use this general syntax: method_name[cloned_var1, cloned_var2, ...] => move |args, ...| { code... } Again, there's no magic. The macro will simply assign a closure to a method. Because closures often need to capture local variables that don't implement the Copy trait, we need to clone these variables. Therefore, we can list the variables we want to clone in the square brackets after the method name. For simple cases there's even a shorter syntax for just sending one input message that works with most event handlers. So instead of this: method_name[sender] => move |_| { sender.input(Msg); }, You can simply write this: method_name => Msg, This is what we used in this example: connect_clicked => AppMsg::Decrement","breadcrumbs":"The component macro » Events","id":"30","title":"Events"},"31":{"body":"The last special syntax of the component macro we'll cover here is the #[watch] attribute. It's just like the normal initialization except that it also updates the property in the view function. Without it, the counter label would never be updated. #[watch] set_label: &format!(\"Counter: {}\", model.counter), The full reference for the syntax of the widget macro can be found here .","breadcrumbs":"The component macro » UI updates","id":"31","title":"UI updates"},"32":{"body":"After we've defined our widgets, we need to construct them. This is done with the view_output! macro, which returns a fully-initialized instance of our Widgets struct. // Insert the macro code generation here let widgets = view_output!();","breadcrumbs":"The component macro » Constructing the Widgets","id":"32","title":"Constructing the Widgets"},"33":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; struct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => AppMsg::Increment }, gtk::Button::with_label(\"Decrement\") { connect_clicked => AppMsg::Decrement }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { counter }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.run::(0);\n}","breadcrumbs":"The component macro » The complete code","id":"33","title":"The complete code"},"34":{"body":"This chapter comes quite early in the book because it is quite helpful for beginners, but is certainly also useful for more advanced users. It contains the most common tips and tricks you will need while using Relm4. In case you have a problem, you can simply return to this chapter and might find something helpful very quickly. We recommend to have at least a short look at this chapter, but there's no crucial information in here so you can already continue with the next chapter if you want.","breadcrumbs":"Tips and tricks » Tips and tricks","id":"34","title":"Tips and tricks"},"35":{"body":"Some features of the view macro are explained very late in the book and are easy to overlook. Here's a short summery of those features, which you might find useful. If you found something interesting, you can look for more details in the macro reference chapter . Initialization using a builder pattern Pass additional arguments Pass Some(widget) if and match statements to dynamically select visible widgets Use the return value of assignments Optional and iterative assignments","breadcrumbs":"Tips and tricks » Advanced view macro features","id":"35","title":"Advanced view macro features"},"36":{"body":"The Elm architecture itself is pretty simple, but as your application grows, small oversights can sometimes cause large problems.","breadcrumbs":"Tips and tricks » Common pitfalls","id":"36","title":"Common pitfalls"},"37":{"body":"Relm4 components use a simple update loop: Receive a message, update the model and then update the view. Usually, this works as intended, but if updating the view somehow creates a new, identical message, your code will be stuck in an infinite loop and your app will freeze. To prevent this, the view macro has the block_signal attribute which is explained here .","breadcrumbs":"Tips and tricks » Message recursion","id":"37","title":"Message recursion"},"38":{"body":"Sending messages in Relm4 can lead to panics under certain circumstances. The most common mistake is dropping a Controller. This will cause the entire runtime of the component to be dropped together with all it's receivers. Sending message to this component afterwards will not work because the receiving side is not available anymore. To avoid this problem, you can either store the Controller in the model of its parent components or call detach_runtime() . Also note that sending output messages will not work if you detach a component, again because this means that no receiver is available. In this case it might be desired to ignore sending errors.","breadcrumbs":"Tips and tricks » Sending errors","id":"38","title":"Sending errors"},"39":{"body":"Relm4's macros try to make your life easier, but sometimes the created error messages are rather confusing. This is not something that can be fully fixed in the macro itself due to the limitations of the Rust programming language, but we try to summarize some common errors in this section.","breadcrumbs":"Tips and tricks » Common compiler errors","id":"39","title":"Common compiler errors"},"4":{"body":"If you prefer learning directly from examples, we got you covered! Many code examples in this book and many other examples can also be found in the git-repository . Whenever an example is discussed in the book, the introduction will mention the name of the example and provide a link to it. To setup the examples run git clone https://github.com/Relm4/Relm4.git And to run an example, simply type cargo run --example NAME To get a list of all examples, run cargo run --example","breadcrumbs":"Introduction » Examples","id":"4","title":"Examples"},"40":{"body":"The #[component] and #[factory] macros will automatically generate a struct for storing your widgets. This struct must have the same visibility as the model because it is associated with the Component or FactoryComponent implementation of the model. To tell the macro to generate a public widgets type, you can simply use #[component(pub)] or #[factory(pub)].","breadcrumbs":"Tips and tricks » Private type in public interface","id":"40","title":"Private type in public interface"},"41":{"body":"Relm4 implements the ContainerExt trait for many widgets that allows you simply nest widgets in the view macro. gtk::Box { gtk::Label { // ... }\n} Unfortunately, this trait can't always be implemented because some widgets don't have a obvious method for adding children. For gtk::Box it is relatively simple and just uses the append() method internally. However, gtk::Header has three possible locations to add children: start, center and end. Implementing RelmContainerExt for such a type is not possible because it's not clear what the default behavior should be. Other types such as gtk::Grid even need more information to place children. In this case, you can simply pass the method name before declaring the child widget. Also, we often need a reference (&) because most methods in gtk-rs take references. gtk::HeaderBar { pack_start = >k::Label { // ... }\n},\ngtk::Grid { attach[0, 0, 1, 1] = >k::Label { // ... }\n}","breadcrumbs":"Tips and tricks » Method container_add is missing","id":"41","title":"Method container_add is missing"},"42":{"body":"The structure and design of most gtk-rs crates is often a bit different from most other Rust crates. Because GTK is based on GObject, a C library that implements object-oriented programming, the gtk-rs developers had to come up with some clever ideas to integrate the C code into Rust.","breadcrumbs":"Tips and tricks » Working with gtk-rs","id":"42","title":"Working with gtk-rs"},"43":{"body":"Looking at the documentation of gtk::Box makes it look like this type has just a new() and a builder() method. However, this is not quite true as the gtk::Box type comes with plenty of methods. To find those methods, you have to look at \"implements\" section , which contains a list of traits implemented by this type. In particular, BoxExt gives you a lot of useful methods. Another very important trait in the list is WidgetExt which is implemented by all widgets. In the same fashion, you can find the available methods of other widgets.","breadcrumbs":"Tips and tricks » Reading docs","id":"43","title":"Reading docs"},"44":{"body":"GTK has a built-in inspector that has similar features as browser developer tools. You can use them to look at individual widgets, modify their properties, apply custom CSS and much more. In particular, it is very useful for finding the best values before integrating them into your code. To use the inspector, you only need to press Ctrl+Shift+D while you have a GTK application opened (this not just works for Relm4, but all GTK based apps). You should see an overview over all your widgets, which you can expand row by row. Yet, to select widgets, it is more convenient to use the button in the top left which allows you to select a widget by clicking on your app. Once you have selected a widget, you can modify its properties. You can also use the CSS tab to apply custom CSS to your application. Once you entered your rules, make sure the pause button is not selected. For example, you could try setting a border for every widget: * { border: 1px solid red;\n} Widget overview Widget properties Widget overview Widget properties","breadcrumbs":"Tips and tricks » Using the inspector","id":"44","title":"Using the inspector"},"45":{"body":"Both GTK4, libadwaita and ASHPD (a library for portals) have demo applications. Those are very useful when searching for widgets and other features, especially when combined with the inspector. Setup gnome-nightly flatpak remote: flatpak remote-add --if-not-exists gnome-nightly https://nightly.gnome.org/gnome-nightly.flatpakrepo Install the GTK4 demo: flatpak install gnome-nightly org.gtk.Demo4 Install the Adwaita demo: flatpak install gnome-nightly org.gnome.Adwaita1.Demo Install the ASHPD demo: flatpak install flathub com.belmoussaoui.ashpd.demo","breadcrumbs":"Tips and tricks » Demo applications","id":"45","title":"Demo applications"},"46":{"body":"Relm4 also offers a few extra crates and projects to make your life easier: relm4-template : A template for flatpak apps that saves a lot of time for setting up new projects relm4-icons : Over 2000 icons, ready to use for your app relm4-components : A collection of handy components","breadcrumbs":"Tips and tricks » Our ecosystem","id":"46","title":"Our ecosystem"},"47":{"body":"In case you didn't find the answer to your question in this book, feel free to ask it in our matrix chat or in a GitHub discussion (you can find all links in our README ). We are always happy to help you! After all, this chapter was assembled from the most common questions we got from either GitHub or the matrix chat.","breadcrumbs":"Tips and tricks » Guaranteed helpful: Our matrix chat","id":"47","title":"Guaranteed helpful: Our matrix chat"},"48":{"body":"Relm4 follows the Elm programming model which means that data and widgets are separated. At first glance this might cause a problem. Larger applications need to efficiently update their widgets because rebuilding the whole UI for every update is not an option. But since data and widgets are separated, how do we know which UI elements need to be updated? Let's have a look at the following example: Imagine you have an app with 1000 counters and you only increment the first counter. The model receives the increment message for the first counter and increments it. Now the view function gets the updated model with 1000 counters and… well, has no idea what has changed! So instead of one UI update we need to do 1000 because we don't know which of our counters was modified. There are two concepts in Relm4 to avoid unnecessary UI updates: Trackers identify modifications of fields in structs to only trigger updates to the affected UI elements. Factories track changes in data structures similar to std::collections in order to perform also minimal UI updates. They are used to generate multiple similar widgets, e.g. a row of buttons, from a data collection. Both concepts are explained in the following chapters.","breadcrumbs":"Efficient UI updates » Efficient UI updates","id":"48","title":"Efficient UI updates"},"49":{"body":"A tracker in this context simply means a data type that's able to track changes to itself. For example, if we increment the counter of the model we used for our first app, the model might tell us later that the counter changed during the last update function. Relm4 does not promote any implementation of a tracker. You're free to use any implementation you like, you can even implement a tracker yourself. In this example however, we'll use the tracker crate that provides a simple macro that implements a tracker for us automatically. Using this technique, we will implement a small program which displays two randomly picked icons controlled by two buttons: App screenshot When pressing a button, the icon above it will change. The background of the application will become green when the two icons are identical: App screenshot with with equal icons","breadcrumbs":"Efficient UI updates » Tracker » Tracker","id":"49","title":"Tracker"},"5":{"body":"As a sneak peak here are screenshots of some examples. Light Theme Dark Theme Pop Over light Pop Over dark Factory-Advanced light Factory-Advanced dark","breadcrumbs":"Introduction » Screenshots","id":"5","title":"Screenshots"},"50":{"body":"The tracker::track macro implements the following methods for your struct fields: get_{field_name}() Get an immutable reference to your field. get_mut_{field_name}() Get a mutable reference to your field. Assumes the field will be modified and marks it as changed. set_{field_name}(value) Get a mutable reference to your field. Marks the field as changed only if the new value isn't equal with the previous value. update_{field_name}(fn) Update your mutable field with a function or a closure. Assumes the field will be modified and marks it as changed. To check for changes you can call {struct_var_name}.changed(StructName::{field_name}()) and it will return a bool indication whether the field was updated. To reset all previous changes, you can call {struct_var_name}.reset().","breadcrumbs":"Efficient UI updates » Tracker » The tracker crate","id":"50","title":"The tracker crate"},"51":{"body":"First we have to add the tracker library to Cargo.toml: tracker = \"0.2.2\" Now let's have a look at a small example. #[tracker::track]\nstruct Test { x: u8, y: u64,\n} fn main() { let mut t = Test { x: 0, y: 0, // the macro generates a new variable called // \"tracker\" which stores the changes tracker: 0, }; t.set_x(42); // let's check whether the change was detected assert!(t.changed(Test::x())); // reset t so we don't track old changes t.reset(); t.set_x(42); // same value, so no change assert!(!t.changed(Test::x()));\n} So in short, the tracker::track macro provides various getters and setters that will mark struct fields as changed. You also get a method that checks for changes and a method to reset the changes.","breadcrumbs":"Efficient UI updates » Tracker » A tracker example","id":"51","title":"A tracker example"},"52":{"body":"Let's build a simple app that shows two random icons and allows the user to set either of them to a new random icon. As a bonus, we want to show a fancy background color if both icons are the same. The app we will write in this chapter is also available here . Run cargo run --example tracker from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » Tracker » Using trackers in Relm4 apps","id":"52","title":"Using trackers in Relm4 apps"},"53":{"body":"Before we can select random icons, we need to quickly implement a function that will return us random image names available in the default GTK icon theme. const ICON_LIST: &[&str] = &[ \"bookmark-new-symbolic\", \"edit-copy-symbolic\", \"edit-cut-symbolic\", \"edit-find-symbolic\", \"starred-symbolic\", \"system-run-symbolic\", \"emoji-objects-symbolic\", \"emoji-nature-symbolic\", \"display-brightness-symbolic\",\n]; fn random_icon_name() -> &'static str { ICON_LIST .iter() .choose(&mut rand::thread_rng()) .expect(\"Could not choose a random icon\")\n}","breadcrumbs":"Efficient UI updates » Tracker » The icons","id":"53","title":"The icons"},"54":{"body":"For our model we only need to store the two icon names and whether both of them are identical. #[tracker::track]\nstruct AppModel { first_icon: &'static str, second_icon: &'static str, identical: bool,\n} The message type is also pretty simple: we just want to update one of the icons. #[derive(Debug)]\nenum AppInput { UpdateFirst, UpdateSecond,\n} There are a few notable things for the Component's update implementation. First, we call self.reset() at the top of the function body. This ensures that the tracker will be reset so we don't track old changes. Also, we use setters instead of assignments because we want to track these changes. Yet, you could still use the assignment operator if you want to apply changes without notifying the tracker. fn update(&mut self, message: Self::Input, _sender: ComponentSender) { // reset tracker value of the model self.reset(); match message { AppInput::UpdateFirst => { self.set_first_icon(random_icon_name()); } AppInput::UpdateSecond => { self.set_second_icon(random_icon_name()); } } self.set_identical(self.first_icon == self.second_icon); }","breadcrumbs":"Efficient UI updates » Tracker » The model","id":"54","title":"The model"},"55":{"body":"Now we reached the interesting part of the code where we can actually make use of the tracker. Let's have a look at the complete view! macro call: view! { #[root] gtk::ApplicationWindow { #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, set_margin_all: 10, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateFirst) } } }, append = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::second_icon())\"] set_icon_name: Some(model.second_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateSecond) } } }, } } }","breadcrumbs":"Efficient UI updates » Tracker » The view","id":"55","title":"The view"},"56":{"body":"In this example, we need some additional code in fn main() to add custom CSS that sets the background color for elements with class name \"identical\". Later, we just need to assign the \"identical\" class name to a widget to make it match the CSS selector. fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.set_global_css(\".identical { background: #00ad5c; }\"); app.run::(());\n}","breadcrumbs":"Efficient UI updates » Tracker » The main function","id":"56","title":"The main function"},"57":{"body":"The #[track] attribute is applied to method invocations in our view code. It allows us to add a condition to the update: if the condition is true, the method will be called, otherwise, it will be skipped. The attribute syntax looks like this: #[track = \"\"] Let's have a look at its first appearance: #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), The set_class_active method is used to either activate or disable a CSS class. It takes two parameters, the first is the class itself and the second is a boolean which specifies if the class should be added (true) or removed (false). The value of the #[track] attribute is parsed as a boolean expression. This expression will be used as a condition to check whether something has changed. If this condition is true, the set_class_active method will be called with the parameters it guards. The macro expansion for method calls annotated with the #[track] attribute look roughly like this: if model.changed(AppModel::identical()) { self.main_window.set_class_active(\"identical\", model.identical);\n} That's all. It's pretty simple, actually. We just use a condition that allows us to update our widgets only when needed. The second #[track] attribute works similarly: #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), Using a tracker as debugging helper Since the #[track] attribute parses expressions, you can use the following syntax to debug your trackers: #[track = \"{ println!(\"Update widget\"); argument }\"]","breadcrumbs":"Efficient UI updates » Tracker » The #[track] attribute","id":"57","title":"The #[track] attribute"},"58":{"body":"There's one last thing to point out. When initializing our model, we need to initialize the tracker field as well. The initial value doesn't really matter because we call reset() in the update function anyway, but usually 0 is used. let model = AppModel { first_icon: random_icon_name(), second_icon: random_icon_name(), identical: false, tracker: 0, };","breadcrumbs":"Efficient UI updates » Tracker » Initializing the model","id":"58","title":"Initializing the model"},"59":{"body":"Let's look at our code again in one piece to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, OrientableExt};\nuse rand::prelude::IteratorRandom;\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; const ICON_LIST: &[&str] = &[ \"bookmark-new-symbolic\", \"edit-copy-symbolic\", \"edit-cut-symbolic\", \"edit-find-symbolic\", \"starred-symbolic\", \"system-run-symbolic\", \"emoji-objects-symbolic\", \"emoji-nature-symbolic\", \"display-brightness-symbolic\",\n]; fn random_icon_name() -> &'static str { ICON_LIST .iter() .choose(&mut rand::thread_rng()) .expect(\"Could not choose a random icon\")\n} // The track proc macro allows to easily track changes to different\n// fields of the model\n#[tracker::track]\nstruct AppModel { first_icon: &'static str, second_icon: &'static str, identical: bool,\n} #[derive(Debug)]\nenum AppInput { UpdateFirst, UpdateSecond,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = AppInput; type Output = (); view! { #[root] gtk::ApplicationWindow { #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, set_margin_all: 10, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateFirst) } } }, append = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::second_icon())\"] set_icon_name: Some(model.second_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateSecond) } } }, } } } // Initialize the UI. fn init( _params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { first_icon: random_icon_name(), second_icon: random_icon_name(), identical: false, tracker: 0, }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, message: Self::Input, _sender: ComponentSender) { // reset tracker value of the model self.reset(); match message { AppInput::UpdateFirst => { self.set_first_icon(random_icon_name()); } AppInput::UpdateSecond => { self.set_second_icon(random_icon_name()); } } self.set_identical(self.first_icon == self.second_icon); }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.set_global_css(\".identical { background: #00ad5c; }\"); app.run::(());\n}","breadcrumbs":"Efficient UI updates » Tracker » The complete code","id":"59","title":"The complete code"},"6":{"body":"We want to thank all contributors of relm especially antoyo for building relm that inspired much of the work on Relm4. Also, we want to thank all contributors of gtk-rs that put a lot of effort into the project for creating outstanding Rust bindings for GTK4. We want to thank tronta , Eduardo Flores , Andy Russell , Aaron Erhardt for contributing a lot of improvements to this book.","breadcrumbs":"Introduction » Special thanks","id":"6","title":"Special thanks"},"60":{"body":"Factories define how to generate widgets from data collections. GTK also has factories, yet Relm4 uses its own factory implementation which is much easier to use in regular Rust code. App screenshot dark This app will have a dynamic number of counters. Also, the counters can be moved up and down by the user.","breadcrumbs":"Efficient UI updates » Factories » Factory","id":"60","title":"Factory"},"61":{"body":"Factories allow you to visualize data in a natural way. If you wanted to store a set of counter values in regular Rust code, you'd probably use Vec. However, you can't simply generate widgets from a Vec. This is where factories are really useful. Custom collection types like FactoryVecDeque allow you to work with collections of data almost as comfortable as if they were stored in a Vec. At the same time, factories allow you to automatically visualize the data with widgets. Additionally, factories are very efficient by reducing the amount of UI updates to a minimum. The app we will write in this chapter is also available here . Run cargo run --example factory from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » Factories » Factories in Relm4","id":"61","title":"Factories in Relm4"},"62":{"body":"First, we define the struct Counter that just stores the value of a single counter. Later, we will use a FactoryVecDeque to store our counters. #[derive(Debug)]\nstruct Counter { value: u8,\n}","breadcrumbs":"Efficient UI updates » Factories » The model","id":"62","title":"The model"},"63":{"body":"Each counter should be able to increment and decrement. #[derive(Debug)]\nenum CounterMsg { Increment, Decrement,\n}","breadcrumbs":"Efficient UI updates » Factories » The input message type","id":"63","title":"The input message type"},"64":{"body":"A neat feature of factories is that each element can easily forward their output messages to the input of their parent component. For example, this is necessary for modifications that require access to the whole FactoryVecDeque, like moving an element to a new position. Therefore, these actions are covered by the output type. The actions we want to perform \"from outside\" are Move a counter up Move a counter down Move a counter to the first position Accordingly, our message type looks like this: #[derive(Debug)]\nenum CounterOutput { SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} You might wonder why DynamicIndex is used here. First, the parent component needs to know which element should be moved, which is defined by the index. Further, elements can move in the FactoryVecDeque. If we used usize as index instead, it could happen that the index points to another element by the time it is processed.","breadcrumbs":"Efficient UI updates » Factories » The output message type","id":"64","title":"The output message type"},"65":{"body":"Factories use the FactoryComponent trait which is very similar to regular components with some minor adjustments. For example, FactoryComponent needs the #[relm4::factory] attribute macro and a few more associated types in the trait implementation. #[relm4::factory]\nimpl FactoryComponent for Counter { type Init = u8; type Input = CounterMsg; type Output = CounterOutput; type CommandOutput = (); type ParentWidget = gtk::Box; Let's look at the associated types one by one: Init : The data required to initialize Counter, in this case the initial counter value. Input : The input message type. Output : The output message type. CommandOutput : The command output message type, we don't need it here. ParentWidget : The container widget used to store the widgets of the factory, for example gtk::Box.","breadcrumbs":"Efficient UI updates » Factories » The factory implementation","id":"65","title":"The factory implementation"},"66":{"body":"The widget creation works as usual with our trusty view macro. The only difference is that we use self to refer to the model due to differences in the FactoryComponent trait. view! { #[root] gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, #[name(label)] gtk::Label { #[watch] set_label: &self.value.to_string(), set_width_chars: 3, }, #[name(add_button)] gtk::Button { set_label: \"+\", connect_clicked => CounterMsg::Increment, }, #[name(remove_button)] gtk::Button { set_label: \"-\", connect_clicked => CounterMsg::Decrement, }, #[name(move_up_button)] gtk::Button { set_label: \"Up\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveUp(index.clone())).unwrap(); } }, #[name(move_down_button)] gtk::Button { set_label: \"Down\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveDown(index.clone())).unwrap(); } }, #[name(to_front_button)] gtk::Button { set_label: \"To Start\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::SendFront(index.clone())).unwrap(); } } } }","breadcrumbs":"Efficient UI updates » Factories » Creating the widget","id":"66","title":"Creating the widget"},"67":{"body":"FactoryComponent has separate functions for initializing the model and the widgets. This means, that we are a bit less flexible, but don't need view_output!() here. Also, we just need to implement the init_model function because init_widgets is already implemented by the macro. fn init_model(value: Self::Init, _index: &DynamicIndex, _sender: FactorySender) -> Self { Self { value } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the model","id":"67","title":"Initializing the model"},"68":{"body":"Now, we have implemented the FactoryComponent type for the elements in our factory. The only thing left to do is to write our main component to complete our app.","breadcrumbs":"Efficient UI updates » Factories » The main component","id":"68","title":"The main component"},"69":{"body":"For the main component we implement the familiar SimpleComponent trait. First we define the model and the input message type and then start the trait implementation. struct App { created_widgets: u8, counters: FactoryVecDeque,\n} #[derive(Debug)]\nenum AppMsg { AddCounter, RemoveCounter, SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::component]\nimpl SimpleComponent for App { type Init = u8; type Input = AppMsg; type Output = ();","breadcrumbs":"Efficient UI updates » Factories » The component types","id":"69","title":"The component types"},"7":{"body":"Before we start building our app, we need to understand the basic concepts of Relm4. If you have experience with GTK and Rust, you will probably breeze through this section, but if you don't, this section is for you. We will explain in detail how Relm4 works and how to use it. After this section, we will be building a simple counter app.","breadcrumbs":"Basic concepts » Basic concepts","id":"7","title":"Basic concepts"},"70":{"body":"We skip the view macro for a moment and look at the init method. You see that we are initializing the FactoryVecDeque using a builder pattern. First, we call FactoryVecDeque::builder() to create the builder and use launch() to set the root widget of the factory. This widget will store all the widgets created by the factory. Then, we use the forward() method to pass all output messages of our factory (with type CounterOutput) to the input of our component (with type AppMsg). The last trick we have up our sleeves is to define a local variable counter_box that is a reference to the container widget of our factory. We'll use it in the view macro in the next section. // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); let model = App { created_widgets: counter, counters, }; let counter_box = model.counters.widget(); let widgets = view_output!(); ComponentParts { model, widgets } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the factory","id":"70","title":"Initializing the factory"},"71":{"body":"The familiar view macro comes into play again. Most things should look familiar, but this time we use a #[local_ref] attribute for the last widget to use the local variable we defined in the previous section. This trick allows us to initialize the model with its FactoryVecDeque before the widgets, which is more convenient in most cases. view! { gtk::Window { set_title: Some(\"Factory example\"), set_default_size: (300, 100), gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Add counter\", connect_clicked => AppMsg::AddCounter, }, gtk::Button { set_label: \"Remove counter\", connect_clicked => AppMsg::RemoveCounter, }, #[local_ref] counter_box -> gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, } } } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the widgets","id":"71","title":"Initializing the widgets"},"72":{"body":"This time the main update function has actually quite a bit to do. The code should be quite readable if you worked with Vec or VecDeque before. One thing stands out though: We see a lot of calls to guard(). In fact, all mutating methods of FactoryVecDeque need an RAII-guard. This is similar to a MutexGuard you get from locking a mutex. The reason for this is simple. As long as the guard is alive, we can perform multiple operations. Once we're done, we just drop the guard (or rather leave the current scope) and this will cause the factory to update its widgets automatically. The neat thing: You can never forget to render changes, and the update algorithm can optimize widget updates for efficiency. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::AddCounter => { self.counters.guard().push_back(self.created_widgets); self.created_widgets = self.created_widgets.wrapping_add(1); } AppMsg::RemoveCounter => { self.counters.guard().pop_back(); } AppMsg::SendFront(index) => { self.counters.guard().move_front(index.current_index()); } AppMsg::MoveDown(index) => { let index = index.current_index(); let new_index = index + 1; // Already at the end? if new_index < self.counters.len() { self.counters.guard().move_to(index, new_index); } } AppMsg::MoveUp(index) => { let index = index.current_index(); // Already at the start? if index != 0 { self.counters.guard().move_to(index, index - 1); } } } }","breadcrumbs":"Efficient UI updates » Factories » The main update function","id":"72","title":"The main update function"},"73":{"body":"Awesome, we almost made it! We only need to define the main function to run our application. fn main() { let app = RelmApp::new(\"relm4.example.factory\"); app.run::(0);\n}","breadcrumbs":"Efficient UI updates » Factories » The main function","id":"73","title":"The main function"},"74":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::factory::{DynamicIndex, FactoryComponent, FactorySender, FactoryVecDeque};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; #[derive(Debug)]\nstruct Counter { value: u8,\n} #[derive(Debug)]\nenum CounterMsg { Increment, Decrement,\n} #[derive(Debug)]\nenum CounterOutput { SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::factory]\nimpl FactoryComponent for Counter { type Init = u8; type Input = CounterMsg; type Output = CounterOutput; type CommandOutput = (); type ParentWidget = gtk::Box; view! { #[root] gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, #[name(label)] gtk::Label { #[watch] set_label: &self.value.to_string(), set_width_chars: 3, }, #[name(add_button)] gtk::Button { set_label: \"+\", connect_clicked => CounterMsg::Increment, }, #[name(remove_button)] gtk::Button { set_label: \"-\", connect_clicked => CounterMsg::Decrement, }, #[name(move_up_button)] gtk::Button { set_label: \"Up\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveUp(index.clone())).unwrap(); } }, #[name(move_down_button)] gtk::Button { set_label: \"Down\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveDown(index.clone())).unwrap(); } }, #[name(to_front_button)] gtk::Button { set_label: \"To Start\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::SendFront(index.clone())).unwrap(); } } } } fn init_model(value: Self::Init, _index: &DynamicIndex, _sender: FactorySender) -> Self { Self { value } } fn update(&mut self, msg: Self::Input, _sender: FactorySender) { match msg { CounterMsg::Increment => { self.value = self.value.wrapping_add(1); } CounterMsg::Decrement => { self.value = self.value.wrapping_sub(1); } } }\n} struct App { created_widgets: u8, counters: FactoryVecDeque,\n} #[derive(Debug)]\nenum AppMsg { AddCounter, RemoveCounter, SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::component]\nimpl SimpleComponent for App { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Factory example\"), set_default_size: (300, 100), gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Add counter\", connect_clicked => AppMsg::AddCounter, }, gtk::Button { set_label: \"Remove counter\", connect_clicked => AppMsg::RemoveCounter, }, #[local_ref] counter_box -> gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); let model = App { created_widgets: counter, counters, }; let counter_box = model.counters.widget(); let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::AddCounter => { self.counters.guard().push_back(self.created_widgets); self.created_widgets = self.created_widgets.wrapping_add(1); } AppMsg::RemoveCounter => { self.counters.guard().pop_back(); } AppMsg::SendFront(index) => { self.counters.guard().move_front(index.current_index()); } AppMsg::MoveDown(index) => { let index = index.current_index(); let new_index = index + 1; // Already at the end? if new_index < self.counters.len() { self.counters.guard().move_to(index, new_index); } } AppMsg::MoveUp(index) => { let index = index.current_index(); // Already at the start? if index != 0 { self.counters.guard().move_to(index, index - 1); } } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.factory\"); app.run::(0);\n}","breadcrumbs":"Efficient UI updates » Factories » The complete code","id":"74","title":"The complete code"},"75":{"body":"Most widgets such as gtk::Box don't use the position function because they are one-dimensional and place widgets relative to each other. However, a few widgets such as gtk::Grid use fixed positions and need the position function to work inside a factory. The task of the position function is mainly to map the index to a certain position/area (x, y, width and height) of a factory widget within the parent widget (view). The code we will use in this chapter is based on the grid_factory example here . Run cargo run --example grid_factory from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » The position function » The position function","id":"75","title":"The position function"},"76":{"body":"Let's take a grid as an example. For a grid, there are many possibilities to place your widgets. You can, for example, place three, four or five widgets per row or you could place a certain amount of widgets per column. You can even create patterns like a chess grid if you want to. However, we want to use a factory for generating our widgets, which means we only have the index to calculate the desired two-dimensional position. In the simplest case, we create a layout that places a certain amount of widgets per row or per column. Grid layout example To place three elements per row from left to right in a gtk::Grid we could use the following position function. fn position(&self, index: &usize) -> GridPosition { let index = *index as i32; let row = index / 3; let column = index % 3; GridPosition { column, row, width: 1, height: 1, } } And indeed, it works as expected. Row placement grid screenshot","breadcrumbs":"Efficient UI updates » The position function » How it works","id":"76","title":"How it works"},"77":{"body":"Let's have a look at a more complex layout. It's unlikely that this would be used in a real application, but it's still interesting to have a look at it. To create a chess grid layout, we need to place our widgets only on fields of one color and leave the other fields empty. Grid layout example Actually, the code isn't too complicated. fn position(&self, index: &usize) -> GridPosition { let index = *index as i32; // add a new row for every 5 elements let row = index / 5; // use every second column and move columns in uneven rows by 1 let column = (index % 5) * 2 + row % 2; GridPosition { column, row, width: 1, height: 1, } } And as you can see, it works! Chess grid layout screenshot","breadcrumbs":"Efficient UI updates » The position function » A chess grid","id":"77","title":"A chess grid"},"78":{"body":"Technically, we already used components in the previous chapters. So far, we've only used one component per application, but in this chapter, we're going to use multiple components to structure our app. Components are independent parts of your application that can communicate with each other. They are used in a parent-child model: The main app component can have several components and each component can have child components and so on. This means that each component has a parent, except for the main app component which is at the top of this tree structure. To showcase this, we will create a small application which opens a dialog when the user tries to close it. The header bar and the dialog will be implemented as standalone components. App screenshot dark App screenshot dark","breadcrumbs":"Components » Components","id":"78","title":"Components"},"79":{"body":"Components are very useful for separating parts of the UI into smaller, more manageable parts. They are not necessary but for larger applications, they can be very helpful.","breadcrumbs":"Components » When to use components","id":"79","title":"When to use components"},"8":{"body":"Like a person, a computer needs a brain to be functional. It needs to process our messages and remember the results. Relm4 uses the term model as a data type that represents the application state, the memory of your application. For example, to store a counter value, we can store a u8 in our model: struct AppModel { counter: u8,\n}","breadcrumbs":"Basic concepts » Model » Model","id":"8","title":"Model"},"80":{"body":"Components store their child components inside the model as a Controller and handle output messages in the init function by calling the forward method. let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); The forward method will redirect the output messages from the child component and transform them into the parent's input messages. Components are independent from each another so a component can be used easily with several different parent components. Therefore, the child component doesn't know which type its parent component will have. Thus, the forward method allows the parent component to transform the output messages of child components to a message type it can handle properly. In this example, HeaderOutput messages are translated into AppMsg.","breadcrumbs":"Components » Message handling","id":"80","title":"Message handling"},"81":{"body":"Let's write a small example app to see how components can be used in action. For this example, we write parts of an app that can edit images. The app we will write in this chapter is also available here . Run cargo run --example components from the example directory if you want to see the code in action.","breadcrumbs":"Components » Example application","id":"81","title":"Example application"},"82":{"body":"Our first component will be a header bar. There are not a lot of advantages for writing this as component except for reducing the complexity in other parts of our UI. The header bar will have three buttons for three modes that our application can have: View : View the image. Edit : Edit the image. Export : Export the image in different formats. We will not implement the actual functionality, but instead use placeholders to keep things simple.","breadcrumbs":"Components » The header bar","id":"82","title":"The header bar"},"83":{"body":"Usually you want to store everything that affects only your component in the state of the component. However, in this case, there is no state that can be stored in the component, but only state that affects the root component (app). Therefore, we leave the model empty and only send messages to the root component. struct HeaderModel; The message type allows us to switch between the modes. #[derive(Debug)]\nenum HeaderOutput { View, Edit, Export,\n} Our component needs no update method, because the view can emit the component's output messages as part of its click signal handlers, as we will see in the next section.","breadcrumbs":"Components » The model","id":"83","title":"The model"},"84":{"body":"There's nothing special about widgets of a child component. The only difference to the main app component is that the root widget doesn't need to be a gtk::Window. Instead, we use a gtk::HeaderBar here, but theoretically the root widget doesn't even need to be a widget at all (which can be useful in special cases). view! { #[root] gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { add_css_class: \"linked\", #[name = \"group\"] gtk::ToggleButton { set_label: \"View\", set_active: true, connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::View).unwrap() } }, }, gtk::ToggleButton { set_label: \"Edit\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Edit).unwrap() } }, }, gtk::ToggleButton { set_label: \"Export\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Export).unwrap() } }, }, } } }","breadcrumbs":"Components » The widgets","id":"84","title":"The widgets"},"85":{"body":"As with a normal application used to edit files, we want to notify the user before they accidentally close the application and discard all progress. For this — you might have guessed it already — we will use another component.","breadcrumbs":"Components » The close alert","id":"85","title":"The close alert"},"86":{"body":"The state of the dialog only needs to store whether or not it's hidden. struct DialogModel { hidden: bool,\n} The message contains three options: Show is used by the parent to display the dialog. Accept is used internally to indicate that the user agreed to close the application. Cancel is used internally to indicate that the user changes his mind and doesn't want to close the application. #[derive(Debug)]\nenum DialogInput { Show, Accept, Cancel,\n} #[derive(Debug)]\nenum DialogOutput { Close,\n}","breadcrumbs":"Components » The model","id":"86","title":"The model"},"87":{"body":"Unlike the last component, the DialogModel component doesn't send its output messages from a signal handler. Instead, the response signal handler sends input messages to itself, handles them in update, and then sends output messages if necessary. This is a common pattern for more complex components. If your component accepts non-internal inputs as well, you may want to mark the internal variants as #[doc(hidden)] so that users of your component know they're only intended for internal use. view! { gtk::MessageDialog { set_modal: true, #[watch] set_visible: !model.hidden, set_text: Some(\"Do you want to close before saving?\"), set_secondary_text: Some(\"All unsaved changes will be lost\"), add_button: (\"Close\", gtk::ResponseType::Accept), add_button: (\"Cancel\", gtk::ResponseType::Cancel), connect_response[sender] => move |_, resp| { sender.input(if resp == gtk::ResponseType::Accept { DialogInput::Accept } else { DialogInput::Cancel }) } } } In the update implementation, we match the input messages and emit an output if needed. fn update(&mut self, msg: Self::Input, sender: ComponentSender) { match msg { DialogInput::Show => self.hidden = false, DialogInput::Accept => { self.hidden = true; sender.output(DialogOutput::Close).unwrap() } DialogInput::Cancel => self.hidden = true, } }","breadcrumbs":"Components » The widgets","id":"87","title":"The widgets"},"88":{"body":"Now all parts come together to form a single app.","breadcrumbs":"Components » The main app","id":"88","title":"The main app"},"89":{"body":"First, let's define the model of the main app and its messages. #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n} The AppMode struct stores the modes the application can be in. The SetMode message is transformed from the output of our header bar component to update the state of the main application when someone presses a button in the header bar. The Close message is transformed from the output of the dialog component to indicate that the window should be closed. In the model, we store the current AppMode as well as a Controller for each of our child components. The update function of the model is pretty straightforward. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::SetMode(mode) => { self.mode = mode; } AppMsg::CloseRequest => { self.dialog.sender().send(DialogInput::Show).unwrap(); } AppMsg::Close => { relm4::main_application().quit(); } } } We can retrieve a sender for the child component by calling the sender() method on the associated Controller, and then send messages of the associated Input type through it.","breadcrumbs":"Components » The model","id":"89","title":"The model"},"9":{"body":"To help the computer understand what we want to tell it, we first translate user interactions into messages. In Relm4, a message can be any data type, but most often, an enum is used. enum AppMsg { Increment, Decrement,\n} Computers are capable of both sending and receiving messages and similarly, components in Relm4 can send and receive messages. This is accomplished by having two types of messages: Input and Output.","breadcrumbs":"Basic concepts » Messages » Messages","id":"9","title":"Messages"},"90":{"body":"When initializing the app component, we construct the child components by passing the appropriate Init and forwarding any desired inputs and outputs. This is done through a builder provided by Component implementations. We pass the initial parameters via the launch method, and then retrieve the final Controller by calling the forward method. In addition to starting the component, the forward method allows us to take the outputs of the component, transform them with a mapping function, and then pass the result as an input message to another sender (in this case, the input sender of the app component). If you don't need to forward any outputs, you can start the component with the detach method instead. fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); let dialog = DialogModel::builder() .transient_for(&root) .launch(true) .forward(sender.input_sender(), |msg| match msg { DialogOutput::Close => AppMsg::Close, }); let model = AppModel { mode: params, header, dialog, }; let widgets = view_output!(); ComponentParts { model, widgets } } Also, we set the set_transient_for property, which actually uses the main window. The dialog should set his parent window so that GTK can handle the dialog better. The GTK docs state: \"[set_transient_for] allows window managers to e.g. keep the dialog on top of the main window, or center the dialog over the main window\". #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n}","breadcrumbs":"Components » Controllers","id":"90","title":"Controllers"},"91":{"body":"We're almost done! Lastly, let's take a look at the app widgets. view! { main_window = gtk::Window { set_default_width: 500, set_default_height: 250, set_titlebar: Some(model.header.widget()), gtk::Label { #[watch] set_label: &format!(\"Placeholder for {:?}\", model.mode), }, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop } } } Most notably, we retrieve the root widget of our header component through the widget() method on the associated Controller to set it as a child of the main window.","breadcrumbs":"Components » The widgets","id":"91","title":"The widgets"},"92":{"body":"You now know most of the secrets that Relm4 offers. Components can be powerful and if they are implemented correctly, they are even reusable across different apps. The relm4-components crate offers several reusable components you can use in your applications. In the following chapters, we'll look at an even simpler component type called worker, how to implement reusable components yourself and how to use components with async code and multiple threads.","breadcrumbs":"Components » Conclusion","id":"92","title":"Conclusion"},"93":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{ ApplicationExt, ButtonExt, DialogExt, GtkWindowExt, ToggleButtonExt, WidgetExt,\n};\nuse relm4::*; struct HeaderModel; #[derive(Debug)]\nenum HeaderOutput { View, Edit, Export,\n} #[relm4::component]\nimpl SimpleComponent for HeaderModel { type Init = (); type Input = (); type Output = HeaderOutput; view! { #[root] gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { add_css_class: \"linked\", #[name = \"group\"] gtk::ToggleButton { set_label: \"View\", set_active: true, connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::View).unwrap() } }, }, gtk::ToggleButton { set_label: \"Edit\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Edit).unwrap() } }, }, gtk::ToggleButton { set_label: \"Export\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Export).unwrap() } }, }, } } } fn init( _params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = HeaderModel; let widgets = view_output!(); ComponentParts { model, widgets } }\n} struct DialogModel { hidden: bool,\n} #[derive(Debug)]\nenum DialogInput { Show, Accept, Cancel,\n} #[derive(Debug)]\nenum DialogOutput { Close,\n} #[relm4::component]\nimpl SimpleComponent for DialogModel { type Init = bool; type Input = DialogInput; type Output = DialogOutput; view! { gtk::MessageDialog { set_modal: true, #[watch] set_visible: !model.hidden, set_text: Some(\"Do you want to close before saving?\"), set_secondary_text: Some(\"All unsaved changes will be lost\"), add_button: (\"Close\", gtk::ResponseType::Accept), add_button: (\"Cancel\", gtk::ResponseType::Cancel), connect_response[sender] => move |_, resp| { sender.input(if resp == gtk::ResponseType::Accept { DialogInput::Accept } else { DialogInput::Cancel }) } } } fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = DialogModel { hidden: params }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, sender: ComponentSender) { match msg { DialogInput::Show => self.hidden = false, DialogInput::Accept => { self.hidden = true; sender.output(DialogOutput::Close).unwrap() } DialogInput::Cancel => self.hidden = true, } }\n} #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = AppMode; type Input = AppMsg; type Output = (); view! { main_window = gtk::Window { set_default_width: 500, set_default_height: 250, set_titlebar: Some(model.header.widget()), gtk::Label { #[watch] set_label: &format!(\"Placeholder for {:?}\", model.mode), }, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop } } } fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); let dialog = DialogModel::builder() .transient_for(&root) .launch(true) .forward(sender.input_sender(), |msg| match msg { DialogOutput::Close => AppMsg::Close, }); let model = AppModel { mode: params, header, dialog, }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::SetMode(mode) => { self.mode = mode; } AppMsg::CloseRequest => { self.dialog.sender().send(DialogInput::Show).unwrap(); } AppMsg::Close => { relm4::main_application().quit(); } } }\n} fn main() { let relm = RelmApp::new(\"ewlm4.test.components\"); relm.run::(AppMode::Edit);\n}","breadcrumbs":"Components » The complete code","id":"93","title":"The complete code"},"94":{"body":"Most user inputs are fairly easy to process. After receiving a message, you process it in the update function and update the view. Everything only takes a couple of milliseconds at most, so the user won't even notice the slight delay. However, when you have to perform complex calculations or I/O-bound operations that take more than a couple of milliseconds to complete, the user will start noticing that the app doesn't feel reactive or \"snappy\" anymore. For example, such operations are performing network requests, filesystems operations or calculating the last digit of π. To better visualize what happens, let's look at the following image. The expected behavior is on the left, where processing of updates is fast and the app spends most of the time idle, waiting for new user inputs (aka events). Yet on the right, the update function is very slow and blocks the entire application so that no other events can be processed in the meantime and the view update is delayed. The behavior on the right will freeze the entire application and should be avoided. Fortunately, Relm4 gives you plenty of options to keep your application responsive.","breadcrumbs":"Threads and async » Introduction","id":"94","title":"Introduction"},"95":{"body":"In general, we can divide the problem into two categories: CPU-bound operations take a lot of time because actual work needs to be done by the CPU. I/O-bound operations take a lot of time because we have to wait for something to happen, for example, a response from a server. This means that we have CPU resources to do other things in the meantime, but to use them, we need a mechanism like async/await.","breadcrumbs":"Threads and async » Understanding the problem","id":"95","title":"Understanding the problem"},"96":{"body":"Let's look at an example of a CPU-bound operation. For an app that generates cryptographic keys, you might define a generate_rsa_key() function. This function takes some time to compute because generating the key is a difficult calculation so we can treat it as if it was implemented like this: fn generate_rsa_key() { std::thread::sleep(Duration::from_secs(10));\n} If our component receives a GenerateKey message, we start generating the key. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::GenerateKey => { self.rsa_key = generate_rsa_key(); } } } Unfortunately, this will freeze our app. There's no trick to avoid this, the CPU must do a lot of work to calculate the result. However, we can offload this work to other threads to keep our application responsive. Possible solutions for this problem are: Workers : A component without widgets that runs on its own thread Commands : Offload tasks to a runtime in the background and receive a message when the task completes Both are covered in the following chapters.","breadcrumbs":"Threads and async » CPU-bound and other synchronous operations","id":"96","title":"CPU-bound and other synchronous operations"},"97":{"body":"Let's say we also need to perform a web-request to fetch existing encryption keys from a server. In theory, we could use a blocking HTTP client which would put us in the same situation as before. However, using async/await allows us to use the CPU for other things while we're waiting for the response. The resulting asynchronous function could look like this. async fn fetch_rsa_key() { tokio::time::sleep(Duration::from_secs(10)).await;\n} Since we now have an asynchronous function, we can't simply call it like a regular function. Again, there are two options to make this work: Async components and factories : Asynchronous traits for components and factories Commands : Offload tasks to a runtime in the background and receive a message when the task completes","breadcrumbs":"Threads and async » I/O-bound and other async operations","id":"97","title":"I/O-bound and other async operations"},"98":{"body":"Workers are simply components that don't have any widgets. They can be quite useful for applications that need to handle long tasks while remaining responsive. In particular, they are suitable for CPU-bound tasks which need to be handled one at the time because they run on a different thread.","breadcrumbs":"Threads and async » Workers » Workers","id":"98","title":"Workers"},"99":{"body":"A worker is implemented similarly to a component by using the Worker trait. Since workers don't have widgets, you don't need to provide a Widgets type. #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[derive(Debug)]\nenum AsyncHandlerMsg { DelayedIncrement, DelayedDecrement,\n} struct AsyncHandler; impl Worker for AsyncHandler { type Init = (); type Input = AsyncHandlerMsg; type Output = AppMsg; fn init(_init: Self::Init, _sender: ComponentSender) -> Self { Self } fn update(&mut self, msg: AsyncHandlerMsg, sender: ComponentSender) { // Simulating heavy CPU-bound task std::thread::sleep(Duration::from_secs(1)); // Send the result of the calculation back match msg { AsyncHandlerMsg::DelayedIncrement => sender.output(AppMsg::Increment), AsyncHandlerMsg::DelayedDecrement => sender.output(AppMsg::Decrement), } .unwrap() }\n} Workers are constructed similarly to components, too. Use the provided builder to retrieve a WorkerController. fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = AppModel { counter: 0, worker: AsyncHandler::builder() .detach_worker(()) .forward(sender.input_sender(), identity), }; let widgets = view_output!(); ComponentParts { model, widgets } } Through the WorkerController, you can send and receive messages from the worker. The worker's update function will run on a separate thread, so your other components won't be blocked. struct AppModel { counter: u8, worker: WorkerController,\n}","breadcrumbs":"Threads and async » Workers » Implementing a worker","id":"99","title":"Implementing a worker"}},"length":188,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{".":{"=":{"2":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{".":{"1":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":2,"docs":{"164":{"tf":1.0},"170":{"tf":1.0}}},"5":{"df":1,"docs":{"168":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"2":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"9":{".":{"1":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"a":{"d":{"5":{"c":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":2.6457513110645907},"160":{"tf":3.7416573867739413},"162":{"tf":4.242640687119285},"41":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"1":{".":{"7":{"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":2.0},"59":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0}}},"3":{"df":1,"docs":{"1":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544},"21":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"2":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"77":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"x":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"3":{"0":{"0":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"4":{"0":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"2":{"df":6,"docs":{"107":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}},"5":{"0":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"8":{"df":2,"docs":{"1":{"tf":1.0},"132":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"4":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"6":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"162":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":2.449489742783178},"162":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"9":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"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":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"5":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"6":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"7":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"8":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"9":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"115":{"tf":1.0},"144":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"124":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"125":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"132":{"tf":1.0}}}}},"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"174":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":9,"docs":{"115":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"65":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"15":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"48":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"29":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"119":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"a":{"df":2,"docs":{"153":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}},"df":5,"docs":{"107":{"tf":2.6457513110645907},"108":{"tf":2.8284271247461903},"109":{"tf":2.0},"110":{"tf":3.1622776601683795},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772}},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":2.0},"110":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"i":{"a":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"159":{"tf":4.69041575982343},"162":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"113":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"103":{"tf":1.0},"144":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"103":{"tf":1.0},"167":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"0":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":61,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"107":{"tf":2.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":3.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"78":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":32,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":23,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"18":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"131":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"90":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"148":{"tf":1.0}}},"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":6,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"174":{"tf":1.0},"30":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":3.1622776601683795},"120":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"174":{"tf":1.4142135623730951},"35":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"144":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":3.605551275463989},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"92":{"tf":1.0},"97":{"tf":1.7320508075688772}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"[":{"0":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}},"1":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"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":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.0},"71":{"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":18,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"187":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"170":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"r":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":3,"docs":{"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"184":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"186":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"103":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"137":{"tf":1.0},"144":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"d":{"df":2,"docs":{"125":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":2.0},"167":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"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":1,"docs":{"154":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":13,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"43":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"u":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}},"df":16,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.4142135623730951},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"44":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"130":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"108":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"15":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"170":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"133":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":15,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"149":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"42":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.6457513110645907},"164":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"138":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":2.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"83":{"tf":1.0}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"148":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"101":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"m":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"128":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":2.0},"77":{"tf":2.0}}}}}},"m":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"df":13,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"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":{},"g":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"100":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"142":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"78":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"x":{"df":7,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"100":{"tf":2.0},"103":{"tf":3.3166247903554},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"108":{"tf":3.872983346207417},"109":{"tf":2.6457513110645907},"11":{"tf":2.6457513110645907},"110":{"tf":2.0},"114":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.0},"138":{"tf":2.23606797749979},"14":{"tf":2.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":3.605551275463989},"170":{"tf":1.7320508075688772},"171":{"tf":2.8284271247461903},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":3.1622776601683795},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"21":{"tf":3.1622776601683795},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":3.4641016151377544},"79":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":2.0},"9":{"tf":1.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.0},"92":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":18,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"57":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"126":{"tf":1.0},"148":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":2.0}},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"181":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"136":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"6":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"125":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"1":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"1":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":2.0},"162":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"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":1,"docs":{"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"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":{},"f":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"148":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":2.8284271247461903},"160":{"tf":2.449489742783178},"162":{"tf":2.6457513110645907}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":40,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"18":{"tf":1.0},"185":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":3.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"112":{"tf":1.0},"44":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"108":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":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":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"32":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"156":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"r":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"38":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"171":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":10,"docs":{"107":{"tf":2.0},"108":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"110":{"tf":3.605551275463989},"167":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"146":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"95":{"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":3,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"12":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"58":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"144":{"tf":1.0},"167":{"tf":1.0},"183":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"115":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"178":{"tf":1.0},"21":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"119":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"140":{"tf":1.0},"27":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"149":{"tf":1.0},"173":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"d":{"df":6,"docs":{"120":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.7320508075688772},"156":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"183":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"169":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":51,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":3.3166247903554},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"138":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"57":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"103":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"128":{"tf":1.0},"173":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"173":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"122":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":1,"docs":{"162":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"35":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":2.449489742783178},"162":{"tf":2.8284271247461903},"20":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":3.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":2.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":28,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}},"x":{"df":3,"docs":{"119":{"tf":1.0},"39":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"45":{"tf":2.23606797749979},"46":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"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":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"110":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":2.0},"162":{"tf":3.872983346207417},"185":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":2.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"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":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772},"90":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":4,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"z":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"31":{"tf":1.0}},"i":{"df":5,"docs":{"125":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":46,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.8284271247461903},"106":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"64":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.4142135623730951}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":3.0},"165":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"21":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"h":{"c":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}}},"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":{"4":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"b":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":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":{"133":{"tf":2.0}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"45":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"w":{"df":1,"docs":{"36":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}}},"4":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.6457513110645907},"12":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.4142135623730951},"6":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":5,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"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":{},"i":{"d":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":3.0},"162":{"tf":3.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"157":{"tf":3.3166247903554},"159":{"tf":3.605551275463989},"162":{"tf":3.605551275463989},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"{":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"_":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}}}}}},"df":29,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"173":{"tf":1.4142135623730951},"57":{"tf":1.0},"72":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"163":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"l":{"df":14,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"167":{"tf":1.0},"30":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"167":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"p":{"df":15,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":4.47213595499958},"124":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"79":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"172":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"150":{"tf":1.0},"35":{"tf":1.0}}},"df":31,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"131":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"100":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":11,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"157":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":2,"docs":{"159":{"tf":1.0},"176":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"173":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":41,"docs":{"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":2.0},"152":{"tf":1.0},"160":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"164":{"tf":1.0},"6":{"tf":1.0}}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"131":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"i":{"c":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"146":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"103":{"tf":1.0},"167":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"_":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":38,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"20":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"45":{"tf":2.449489742783178}}},"n":{"c":{"df":3,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"15":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}},"f":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"129":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"106":{"tf":1.0}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"t":{"'":{"df":15,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":2.0},"35":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"160":{"tf":1.0}}}},"y":{"df":2,"docs":{"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":2.0},"25":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"35":{"tf":1.0}},"r":{"df":7,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"154":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":5,"docs":{"171":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":2.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"129":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"'":{"df":31,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}},"’":{"df":2,"docs":{"110":{"tf":1.0},"122":{"tf":1.0}}}}},"i":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"15":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"16":{"tf":2.0},"5":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"119":{"tf":1.0},"160":{"tf":1.0}}},"k":{"df":6,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":2.0},"148":{"tf":1.0},"150":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}}},"o":{"a":{"d":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"4":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"157":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":7,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"30":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"111":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":3,"docs":{"172":{"tf":1.0},"23":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":15,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":50,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.0},"112":{"tf":1.7320508075688772},"129":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":2.0},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"158":{"tf":1.0},"160":{"tf":3.1622776601683795},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"24":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":35,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"76":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":10,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"90":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"k":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"7":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"8":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.0},"165":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"0":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"137":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":47,"docs":{"10":{"tf":2.6457513110645907},"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":2.449489742783178},"11":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"12":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"21":{"tf":3.1622776601683795},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":2.0},"9":{"tf":2.449489742783178},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"41":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"142":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"120":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"74":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"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":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"178":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":50,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":2.23606797749979},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"115":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":7,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":2.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":2.8284271247461903},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"28":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"174":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"146":{"tf":1.0},"72":{"tf":1.0}}}},"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":2.0},"162":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"142":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"144":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"160":{"tf":1.4142135623730951},"54":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"38":{"tf":1.0}}},"h":{"df":3,"docs":{"146":{"tf":1.0},"161":{"tf":1.0},"84":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"115":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"df":30,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"135":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"123":{"tf":1.4142135623730951},"42":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"d":{"df":5,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"46":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":3,"docs":{"174":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":6,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"124":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.0},"167":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"128":{"tf":1.0},"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"105":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"135":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"1":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"119":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"74":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.0},"122":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"145":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"108":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":14,"docs":{"108":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"38":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":2,"docs":{"119":{"tf":2.0},"57":{"tf":1.4142135623730951}}},"t":{"df":21,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"142":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"119":{"tf":1.0},"148":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"145":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}}}},"y":{"df":2,"docs":{"21":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951}},"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":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"2":{"4":{"df":0,"docs":{},"x":{"2":{"4":{"/":{"a":{"c":{"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":1,"docs":{"101":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"146":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":4,"docs":{"16":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"127":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"160":{"tf":1.0},"186":{"tf":1.0},"37":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"138":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":2,"docs":{"166":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":2.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":4,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":2.6457513110645907},"126":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":2.8284271247461903},"160":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"44":{"tf":2.0},"90":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"0":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"df":3,"docs":{"108":{"tf":3.3166247903554},"110":{"tf":3.3166247903554},"139":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"112":{"tf":1.0},"139":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":4,"docs":{"160":{"tf":1.0},"20":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"168":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"138":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"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":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"105":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0}},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"153":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"72":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":2.23606797749979},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"48":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":4,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"113":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"183":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"15":{"tf":1.0}}}},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"4":{"'":{"df":3,"docs":{"144":{"tf":1.0},"165":{"tf":1.0},"39":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"185":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":7,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":48,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"a":{"d":{"d":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"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":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951},"93":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"v":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"180":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"173":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"120":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"4":{"tf":1.0}}},"y":{"]":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"108":{"tf":3.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"167":{"tf":1.0},"178":{"tf":1.0}}},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"57":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"4":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":2.449489742783178},"137":{"tf":2.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"171":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":14,"docs":{"1":{"tf":1.7320508075688772},"103":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":2.449489742783178},"46":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"60":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":1,"docs":{"23":{"tf":1.0}}},"n":{"df":2,"docs":{"161":{"tf":1.0},"24":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"35":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{".":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":1,"docs":{"162":{"tf":1.0}}},"4":{"df":1,"docs":{"162":{"tf":1.0}}},"5":{"df":1,"docs":{"162":{"tf":1.0}}},"6":{"df":1,"docs":{"162":{"tf":1.0}}},"7":{"df":1,"docs":{"162":{"tf":1.0}}},"8":{"df":1,"docs":{"162":{"tf":1.0}}},"9":{"df":1,"docs":{"162":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":1,"docs":{"162":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"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":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.0},"74":{"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":{},"o":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"162":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":2.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"n":{"d":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"148":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"170":{"tf":1.0},"30":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"170":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":12,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"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":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":3.3166247903554},"160":{"tf":2.449489742783178},"162":{"tf":2.0},"174":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"84":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"144":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":16,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":3.0},"110":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":2.0},"130":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"162":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"4":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"30":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":2.449489742783178},"125":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"52":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":1.0}},"n":{"df":2,"docs":{"128":{"tf":1.0},"137":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"108":{"tf":1.0},"126":{"tf":2.6457513110645907},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"187":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"i":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"155":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"157":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"153":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"0":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}},"i":{"df":6,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"23":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"d":{"df":2,"docs":{"119":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"t":{"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"106":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"c":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"d":{":":{":":{"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":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"2":{"1":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"96":{"tf":1.0}}},"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"177":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}},"p":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":45,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"167":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}},"i":{"df":3,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.4142135623730951},"184":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":3.0},"59":{"tf":3.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"(":{"4":{"2":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"b":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"106":{"tf":2.449489742783178},"75":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"40":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":4.242640687119285},"114":{"tf":2.8284271247461903},"115":{"tf":2.23606797749979},"116":{"tf":2.8284271247461903},"117":{"tf":3.0},"118":{"tf":2.0},"129":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":2.449489742783178},"109":{"tf":2.0},"110":{"tf":2.8284271247461903},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":2.0}}}},"t":{"'":{"df":8,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"157":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"135":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":10,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"k":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":2,"docs":{"15":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"44":{"tf":1.0}}}},"p":{"df":6,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"59":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":2.6457513110645907},"15":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"130":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"153":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"df":5,"docs":{"119":{"tf":1.0},"164":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"146":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":14,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":56,"docs":{"100":{"tf":2.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"162":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":3.7416573867739413},"23":{"tf":2.0},"25":{"tf":2.8284271247461903},"27":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0},"99":{"tf":2.0}}}}}},"u":{"6":{"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{")":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":3.1622776601683795},"177":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"i":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":2.6457513110645907},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"38":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.0},"183":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"120":{"tf":1.0},"159":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"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":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.6457513110645907},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":2.0},"48":{"tf":3.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"120":{"tf":1.7320508075688772},"128":{"tf":1.0}}}},"df":110,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":3.1622776601683795},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"108":{"tf":1.0}}},"df":15,"docs":{"108":{"tf":2.449489742783178},"110":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.0}}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":3,"docs":{"164":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0}}},"5":{"df":3,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"7":{"df":2,"docs":{"182":{"tf":1.0},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":25,"docs":{"102":{"tf":1.4142135623730951},"114":{"tf":1.0},"144":{"tf":2.0},"146":{"tf":2.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"19":{"tf":1.0},"20":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"e":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"!":{"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"u":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"173":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"1":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"a":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"175":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}}}},"df":55,"docs":{"103":{"tf":2.0},"104":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"31":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":5,"docs":{"103":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}},"b":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"135":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":83,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"110":{"tf":2.8284271247461903},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"12":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.6457513110645907},"142":{"tf":2.449489742783178},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":3.1622776601683795},"146":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":3.0},"162":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":2.0},"21":{"tf":4.123105625617661},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"27":{"tf":2.6457513110645907},"29":{"tf":2.0},"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":3.1622776601683795},"45":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"84":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"93":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"43":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"21":{"tf":1.0},"25":{"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.0},"124":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"144":{"tf":1.0},"166":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"164":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"103":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":40,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":2.0},"17":{"tf":1.0},"173":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"171":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":3.0}}}}},"l":{"d":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"142":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":4,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"174":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"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":15,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}}}}},"x":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"y":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"119":{"tf":1.0},"49":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{".":{"=":{"2":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{".":{"1":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":15,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}},"5":{"df":14,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"2":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0}}},"7":{"df":7,"docs":{"157":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"9":{".":{"1":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"a":{"d":{"5":{"c":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":2.6457513110645907},"160":{"tf":3.7416573867739413},"162":{"tf":4.242640687119285},"41":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"1":{".":{"7":{"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":2.0},"59":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0}}},"3":{"df":1,"docs":{"1":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544},"21":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"2":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"77":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"x":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"3":{"0":{"0":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"4":{"0":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"2":{"df":6,"docs":{"107":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}},"5":{"0":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"8":{"df":2,"docs":{"1":{"tf":1.0},"132":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"4":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"6":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"162":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":2.449489742783178},"162":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"9":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"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":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"5":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"6":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"7":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"8":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"9":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"115":{"tf":1.0},"144":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"124":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":2.0},"16":{"tf":1.0},"181":{"tf":1.7320508075688772},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"125":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"132":{"tf":1.0}}}}},"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.7320508075688772},"160":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"174":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":9,"docs":{"115":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"65":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"15":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"48":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"29":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"119":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"a":{"df":2,"docs":{"153":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}},"df":5,"docs":{"107":{"tf":2.6457513110645907},"108":{"tf":3.0},"109":{"tf":2.0},"110":{"tf":3.1622776601683795},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772}},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":2.0},"110":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"i":{"a":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"159":{"tf":4.69041575982343},"162":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"113":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"103":{"tf":1.0},"144":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"103":{"tf":1.0},"167":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"0":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":62,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"107":{"tf":2.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":3.3166247903554},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"78":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":32,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":23,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"18":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"131":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"90":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"148":{"tf":1.0}}},"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":6,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"174":{"tf":1.0},"30":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":3.1622776601683795},"120":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"174":{"tf":1.4142135623730951},"35":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"144":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":17,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":4.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"170":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"[":{"0":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}},"1":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"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":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":2.8284271247461903},"65":{"tf":1.0},"71":{"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":18,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"187":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"170":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"r":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":3,"docs":{"78":{"tf":1.0},"82":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}},"i":{"c":{"df":12,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"184":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"186":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"103":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"137":{"tf":1.0},"144":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"d":{"df":2,"docs":{"125":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.4142135623730951},"160":{"tf":2.0},"167":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"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":1,"docs":{"154":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":13,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"43":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"u":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}},"df":16,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.4142135623730951},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"44":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"130":{"tf":2.23606797749979},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"108":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"15":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"170":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"133":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}}},"df":15,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"149":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"42":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.6457513110645907},"164":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"138":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":18,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"142":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":2.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"83":{"tf":1.0}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"148":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"101":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"m":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"141":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"128":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":2.0},"77":{"tf":2.0}}}}}},"m":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"df":14,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"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":{},"g":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"100":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"142":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"47":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"78":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"x":{"df":7,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":93,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"100":{"tf":2.0},"103":{"tf":3.605551275463989},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.6457513110645907},"108":{"tf":4.123105625617661},"109":{"tf":2.8284271247461903},"11":{"tf":2.6457513110645907},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.449489742783178},"138":{"tf":2.6457513110645907},"139":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.0},"169":{"tf":3.7416573867739413},"170":{"tf":1.7320508075688772},"171":{"tf":3.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":3.1622776601683795},"183":{"tf":2.0},"184":{"tf":1.0},"21":{"tf":3.3166247903554},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":3.7416573867739413},"79":{"tf":2.0},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"9":{"tf":1.0},"90":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":18,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.0},"57":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"126":{"tf":1.0},"148":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":2.0}},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":2.0},"160":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"90":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"181":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"6":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"125":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"1":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"1":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":2.0},"162":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"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":1,"docs":{"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"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":{},"f":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"148":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":2.8284271247461903},"160":{"tf":2.449489742783178},"162":{"tf":2.6457513110645907}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":40,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"18":{"tf":1.0},"185":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":3.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"112":{"tf":1.0},"44":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"108":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"134":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":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":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"32":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":2.449489742783178}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"156":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"r":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"38":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"171":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":10,"docs":{"107":{"tf":2.0},"108":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"110":{"tf":3.605551275463989},"167":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"42":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"146":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"95":{"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":3,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"43":{"tf":1.4142135623730951},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"12":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"58":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"144":{"tf":1.0},"167":{"tf":1.0},"183":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"115":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"178":{"tf":1.0},"21":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"119":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"140":{"tf":1.0},"27":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"149":{"tf":1.0},"173":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":31,"docs":{"160":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"d":{"df":6,"docs":{"120":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.7320508075688772},"156":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"183":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"169":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":51,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":3.4641016151377544},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"138":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"57":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"103":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"128":{"tf":1.0},"173":{"tf":2.0},"184":{"tf":1.7320508075688772},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"165":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"173":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"122":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":1,"docs":{"162":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"35":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":2.449489742783178},"162":{"tf":2.8284271247461903},"20":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":3.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":2.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}},"x":{"df":3,"docs":{"119":{"tf":1.0},"39":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"45":{"tf":2.23606797749979},"46":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"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":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"110":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":2.0},"162":{"tf":3.872983346207417},"185":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":2.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"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":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772},"90":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":4,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"z":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"31":{"tf":1.0}},"i":{"df":5,"docs":{"125":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.8284271247461903},"106":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"64":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.4142135623730951}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":3.0},"165":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"21":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"h":{"c":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}}},"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":{"4":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"137":{"tf":1.7320508075688772},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"b":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":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":{"133":{"tf":2.0}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"45":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"w":{"df":1,"docs":{"36":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}}},"4":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.6457513110645907},"12":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.4142135623730951},"6":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":5,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"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":{},"i":{"d":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":3.0},"162":{"tf":3.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"157":{"tf":3.3166247903554},"159":{"tf":3.605551275463989},"162":{"tf":3.605551275463989},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"{":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"_":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}}}}}},"df":29,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.23606797749979},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"173":{"tf":1.4142135623730951},"57":{"tf":1.0},"72":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"l":{"df":14,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"167":{"tf":1.0},"30":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"167":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"p":{"df":15,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":4.47213595499958},"124":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"79":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"172":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"150":{"tf":1.0},"35":{"tf":1.0}}},"df":31,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"131":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"100":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"3":{"2":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":11,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"157":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":2,"docs":{"159":{"tf":1.0},"176":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"173":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":41,"docs":{"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":2.0},"152":{"tf":1.0},"160":{"tf":2.6457513110645907},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"164":{"tf":1.0},"6":{"tf":1.0}}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"131":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"i":{"c":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"146":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"103":{"tf":1.0},"167":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"_":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":38,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"20":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":2.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"45":{"tf":2.449489742783178}}},"n":{"c":{"df":3,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"15":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}},"f":{"a":{"c":{"df":5,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"106":{"tf":1.0}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.7320508075688772},"24":{"tf":1.0}}}}},"t":{"'":{"df":15,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":2.0},"35":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"160":{"tf":1.0}}}},"y":{"df":2,"docs":{"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":2.0},"25":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"35":{"tf":1.0}},"r":{"df":7,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"154":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":5,"docs":{"171":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":2.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"129":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"'":{"df":31,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}},"’":{"df":2,"docs":{"110":{"tf":1.0},"122":{"tf":1.0}}}}},"i":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"15":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"16":{"tf":2.0},"5":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0}}},"k":{"df":6,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":2.23606797749979},"148":{"tf":1.0},"150":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}}},"o":{"a":{"d":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"4":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"157":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":7,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"30":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"111":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":3,"docs":{"172":{"tf":1.0},"23":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":15,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":59,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.0},"112":{"tf":1.7320508075688772},"129":{"tf":1.0},"138":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":2.8284271247461903},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":2.8284271247461903},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.8284271247461903},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"24":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":35,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.0},"59":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"76":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":10,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"90":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"k":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"7":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"8":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.0},"165":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"0":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"137":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":47,"docs":{"10":{"tf":3.0},"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":2.449489742783178},"11":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"12":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":2.0},"167":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":2.0},"9":{"tf":2.8284271247461903},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"43":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":25,"docs":{"163":{"tf":2.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"142":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"120":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"74":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"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":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"178":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":50,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":2.23606797749979},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"21":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"54":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":2.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"115":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":7,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":2.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":2.8284271247461903},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"28":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"174":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"146":{"tf":1.0},"72":{"tf":1.0}}}},"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":2.0},"162":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"142":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"144":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"160":{"tf":1.4142135623730951},"54":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"38":{"tf":1.0}}},"h":{"df":3,"docs":{"146":{"tf":1.0},"161":{"tf":1.0},"84":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"115":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"df":30,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"135":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"123":{"tf":1.4142135623730951},"42":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"d":{"df":5,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"46":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":3,"docs":{"174":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":6,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"124":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.0},"167":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"128":{"tf":1.0},"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"105":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"135":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"1":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"119":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"74":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":11,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"145":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"108":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":14,"docs":{"108":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"38":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":2,"docs":{"119":{"tf":2.0},"57":{"tf":1.4142135623730951}}},"t":{"df":21,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"142":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"119":{"tf":1.0},"148":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"145":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}}}},"y":{"df":2,"docs":{"21":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.7320508075688772},"77":{"tf":1.0}},"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":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"2":{"4":{"df":0,"docs":{},"x":{"2":{"4":{"/":{"a":{"c":{"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":1,"docs":{"101":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"146":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":4,"docs":{"16":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"127":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"160":{"tf":1.0},"186":{"tf":1.0},"37":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"138":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":2,"docs":{"166":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":2.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":4,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":2.8284271247461903},"126":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":3.0},"160":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":2.0},"90":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"0":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"df":3,"docs":{"108":{"tf":3.3166247903554},"110":{"tf":3.3166247903554},"139":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"112":{"tf":1.0},"139":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":4,"docs":{"160":{"tf":1.0},"20":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"168":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"138":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"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":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"105":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"153":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"72":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":2.23606797749979},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"48":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":4,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":35,"docs":{"113":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":2.0},"183":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"15":{"tf":1.0}}}},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"4":{"'":{"df":3,"docs":{"144":{"tf":1.0},"165":{"tf":1.0},"39":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"185":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":7,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":48,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"a":{"d":{"d":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"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":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951},"93":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"v":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"180":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"173":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"120":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"4":{"tf":1.0}}},"y":{"]":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.7320508075688772},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"108":{"tf":3.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"148":{"tf":1.0},"170":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"167":{"tf":1.0},"178":{"tf":1.0}}},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"57":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"4":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"6":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":2.449489742783178},"137":{"tf":2.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"171":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":14,"docs":{"1":{"tf":1.7320508075688772},"103":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":2.449489742783178},"46":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":1,"docs":{"23":{"tf":1.0}}},"n":{"df":2,"docs":{"161":{"tf":1.0},"24":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"35":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{".":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":1,"docs":{"162":{"tf":1.0}}},"4":{"df":1,"docs":{"162":{"tf":1.0}}},"5":{"df":1,"docs":{"162":{"tf":1.0}}},"6":{"df":1,"docs":{"162":{"tf":1.0}}},"7":{"df":1,"docs":{"162":{"tf":1.0}}},"8":{"df":1,"docs":{"162":{"tf":1.0}}},"9":{"df":1,"docs":{"162":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":1,"docs":{"162":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"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":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.0},"74":{"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":{},"o":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"162":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":2.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"n":{"d":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"148":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":2.449489742783178},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"170":{"tf":1.0},"30":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"170":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":12,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"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":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":3.3166247903554},"160":{"tf":2.449489742783178},"162":{"tf":2.0},"174":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"84":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"144":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":16,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":3.0},"110":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":2.23606797749979},"130":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"162":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"4":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"30":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":2.449489742783178},"125":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"52":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":1.0}},"n":{"df":2,"docs":{"128":{"tf":1.0},"137":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"108":{"tf":1.0},"126":{"tf":2.8284271247461903},"148":{"tf":1.7320508075688772},"149":{"tf":2.6457513110645907},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"187":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"i":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"155":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"157":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"153":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"0":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}},"i":{"df":6,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"23":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"d":{"df":2,"docs":{"119":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"t":{"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"106":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"c":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"d":{":":{":":{"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":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"2":{"1":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"96":{"tf":1.0}}},"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"177":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}},"p":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":45,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"167":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}},"i":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.4142135623730951},"184":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":3.0},"59":{"tf":3.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"(":{"4":{"2":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"b":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":2.0},"101":{"tf":2.0},"102":{"tf":1.0},"106":{"tf":2.449489742783178},"75":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"40":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":2.449489742783178},"112":{"tf":2.6457513110645907},"113":{"tf":4.47213595499958},"114":{"tf":3.1622776601683795},"115":{"tf":2.449489742783178},"116":{"tf":3.0},"117":{"tf":3.4641016151377544},"118":{"tf":2.449489742783178},"129":{"tf":2.0},"46":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":2.449489742783178},"109":{"tf":2.0},"110":{"tf":2.8284271247461903},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":2.23606797749979}}}},"t":{"'":{"df":8,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"157":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"135":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":10,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"k":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":2,"docs":{"15":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":14,"docs":{"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"44":{"tf":1.0}}}},"p":{"df":6,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":3.3166247903554},"59":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.8284271247461903},"50":{"tf":1.7320508075688772},"51":{"tf":2.6457513110645907},"52":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"15":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"130":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"153":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"df":5,"docs":{"119":{"tf":1.0},"164":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"146":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":14,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":56,"docs":{"100":{"tf":2.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"162":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":3.7416573867739413},"23":{"tf":2.0},"25":{"tf":2.8284271247461903},"27":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0},"99":{"tf":2.0}}}}}},"u":{"6":{"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{")":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":3.1622776601683795},"177":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"i":{"df":47,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"48":{"tf":3.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"38":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.0},"183":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"120":{"tf":1.0},"159":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"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":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":56,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.6457513110645907},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":2.0},"37":{"tf":2.0},"48":{"tf":3.3166247903554},"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"128":{"tf":1.0}}}},"df":110,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":3.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":3.1622776601683795},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"108":{"tf":1.0}}},"df":15,"docs":{"108":{"tf":2.449489742783178},"110":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.0}}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"5":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"182":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":25,"docs":{"102":{"tf":1.4142135623730951},"114":{"tf":1.0},"144":{"tf":2.0},"146":{"tf":2.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"19":{"tf":1.0},"20":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"e":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"!":{"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"u":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"173":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"1":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"a":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"175":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}}}},"df":55,"docs":{"103":{"tf":2.0},"104":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":2.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":2.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"31":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":5,"docs":{"103":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}},"b":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"135":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":83,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"113":{"tf":2.23606797749979},"114":{"tf":2.0},"115":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.0},"12":{"tf":3.1622776601683795},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.8284271247461903},"142":{"tf":2.6457513110645907},"143":{"tf":2.23606797749979},"144":{"tf":2.23606797749979},"145":{"tf":3.3166247903554},"146":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":2.0},"157":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":3.0},"162":{"tf":2.23606797749979},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"21":{"tf":4.123105625617661},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"27":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":3.1622776601683795},"45":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"84":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979},"93":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"43":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"21":{"tf":1.0},"25":{"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.0},"124":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"144":{"tf":1.0},"166":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"164":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"103":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":40,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":2.0},"17":{"tf":1.0},"173":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"171":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":3.3166247903554}}}}},"l":{"d":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"142":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":4,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"174":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"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":15,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}}}}},"x":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"y":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"119":{"tf":1.0},"49":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"181":{"tf":1.0}}}}}}},"d":{"d":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":4,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"97":{"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":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"133":{"tf":1.0}}}}}}},"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0}}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"107":{"tf":1.0},"142":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"36":{"tf":1.0},"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"136":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"96":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"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":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"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":1,"docs":{"117":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"185":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"153":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"103":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"56":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"122":{"tf":1.0},"42":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"119":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":10,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":5,"docs":{"56":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"152":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"180":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"155":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"105":{"tf":1.0},"122":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.0},"146":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"139":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"4":{"df":3,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"122":{"tf":1.0},"42":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"156":{"tf":1.0},"40":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"48":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":4,"docs":{"114":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}},"5":{"df":2,"docs":{"168":{"tf":1.0},"179":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"7":{"df":2,"docs":{"182":{"tf":1.0},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"140":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":20,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"42":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["introduction.html#why-relm4","introduction.html#requirements","introduction.html#issues-and-feedback","introduction.html#platform-support","introduction.html#examples","introduction.html#screenshots","introduction.html#special-thanks","basic_concepts/index.html#basic-concepts","basic_concepts/model.html#model","basic_concepts/messages.html#messages","basic_concepts/messages/input.html#input-messages","basic_concepts/messages/output.html#output-messages","basic_concepts/widgets.html#widgets","basic_concepts/components.html#components","basic_concepts/components.html#the-component-trait","basic_concepts/components.html#the-simplecomponent-trait","first_app.html#your-first-app","first_app.html#application-architecture","first_app.html#messages","first_app.html#the-model","first_app.html#the-widgets","first_app.html#implement-a-component-with-simplecomponent","first_app.html#running-the-app","first_app.html#summary","first_app.html#conclusion","first_app.html#the-complete-code","component_macro.html#the-component-macro","component_macro.html#whats-different","component_macro.html#properties","component_macro.html#widgets","component_macro.html#events","component_macro.html#ui-updates","component_macro.html#constructing-the-widgets","component_macro.html#the-complete-code","tricks.html#tips-and-tricks","tricks.html#advanced-view-macro-features","tricks.html#common-pitfalls","tricks.html#message-recursion","tricks.html#sending-errors","tricks.html#common-compiler-errors","tricks.html#private-type-in-public-interface","tricks.html#method-container_add-is-missing","tricks.html#working-with-gtk-rs","tricks.html#reading-docs","tricks.html#using-the-inspector","tricks.html#demo-applications","tricks.html#our-ecosystem","tricks.html#guaranteed-helpful-our-matrix-chat","efficient_ui/index.html#efficient-ui-updates","efficient_ui/tracker.html#tracker","efficient_ui/tracker.html#the-tracker-crate","efficient_ui/tracker.html#a-tracker-example","efficient_ui/tracker.html#using-trackers-in-relm4-apps","efficient_ui/tracker.html#the-icons","efficient_ui/tracker.html#the-model","efficient_ui/tracker.html#the-view","efficient_ui/tracker.html#the-main-function","efficient_ui/tracker.html#the-track-attribute","efficient_ui/tracker.html#initializing-the-model","efficient_ui/tracker.html#the-complete-code","efficient_ui/factory.html#factory","efficient_ui/factory.html#factories-in-relm4","efficient_ui/factory.html#the-model","efficient_ui/factory.html#the-input-message-type","efficient_ui/factory.html#the-output-message-type","efficient_ui/factory.html#the-factory-implementation","efficient_ui/factory.html#creating-the-widget","efficient_ui/factory.html#initializing-the-model","efficient_ui/factory.html#the-main-component","efficient_ui/factory.html#the-component-types","efficient_ui/factory.html#initializing-the-factory","efficient_ui/factory.html#initializing-the-widgets","efficient_ui/factory.html#the-main-update-function","efficient_ui/factory.html#the-main-function","efficient_ui/factory.html#the-complete-code","efficient_ui/factory_position.html#the-position-function","efficient_ui/factory_position.html#how-it-works","efficient_ui/factory_position.html#a-chess-grid","components.html#components","components.html#when-to-use-components","components.html#message-handling","components.html#example-application","components.html#the-header-bar","components.html#the-model","components.html#the-widgets","components.html#the-close-alert","components.html#the-model-1","components.html#the-widgets-1","components.html#the-main-app","components.html#the-model-2","components.html#controllers","components.html#the-widgets-2","components.html#conclusion","components.html#the-complete-code","threads_and_async/index.html#introduction","threads_and_async/index.html#understanding-the-problem","threads_and_async/index.html#cpu-bound-and-other-synchronous-operations","threads_and_async/index.html#io-bound-and-other-async-operations","threads_and_async/worker.html#workers","threads_and_async/worker.html#implementing-a-worker","threads_and_async/commands.html#commands","threads_and_async/commands.html#synchronous-tasks","threads_and_async/commands.html#configuration","threads_and_async/async.html#async-components-and-factories","threads_and_async/async.html#the-complete-code","threads_and_async/overview.html#overview","threads_and_async/overview.html#summary","child_components.html#child-components","child_components.html#the-alert-component","child_components.html#usage","child_components.html#the-complete-code","widget_templates/index.html#widget-templates","widget_templates/index.html#defining-templates","widget_templates/index.html#template-children","widget_templates/index.html#using-templates","widget_templates/index.html#some-notes-on-orders","widget_templates/index.html#the-complete-code","widget_templates/accessing_nested_template_elements.html#accessing-nested-template-elements","widget_templates/accessing_nested_template_elements.html#the-complete-code","cli.html#command-line-interfaces","cli.html#result","cli.html#the-complete-code","gtk_rs.html#gtk-rs-overview","gtk_rs.html#gobjects","gtk_rs.html#subclassing","gtk_rs.html#properties","gtk_rs.html#signals","gtk_rs.html#settings","gtk_rs.html#lists","gtk_rs.html#composite-templates","resource_bundles.html#resource-bundles","resource_bundles.html#cargo","resource_bundles.html#data-directory","resource_bundles.html#cargotoml","resource_bundles.html#buildrs","resource_bundles.html#mainrs","continuous_integration.html#continuous-integration","continuous_integration.html#github-actions","component_macro/reference.html#the-component-macro-reference","component_macro/reference.html#public-widgets","component_macro/reference.html#the-view-macro","component_macro/reference.html#constructing-widgets","component_macro/reference.html#child-widgets","component_macro/reference.html#naming-widgets","component_macro/reference.html#conditional-widgets","component_macro/reference.html#returned-widgets","component_macro/reference.html#properties","component_macro/reference.html#trait-disambiguation","component_macro/reference.html#signals","component_macro/reference.html#blocking-signals-temporarily","component_macro/reference.html#manual-code","component_macro/reference.html#add-more-fields-to-your-widgets","component_macro/reference.html#manual-view","component_macro/expansion.html#macro-expansion","component_macro/expansion.html#the-boilerplate","component_macro/expansion.html#the-model","component_macro/expansion.html#the-message-type","component_macro/expansion.html#the-macro","component_macro/expansion.html#the-expansion","component_macro/expansion.html#the-widgets-struct","component_macro/expansion.html#the-simplecomponent-trait-implementation","component_macro/expansion.html#conclusion","component_macro/expansion.html#the-whole-macro-expansion","migrations/index.html#migration-guides","migrations/0_2_to_0_4.html#migration-from-v02-to-v04","migrations/0_2_to_0_4.html#factoryprototype","migrations/0_2_to_0_4.html#widget-macro","migrations/0_2_to_0_4.html#components","migrations/0_4_to_0_5.html#migration-from-v04-to-v05","migrations/0_4_to_0_5.html#components","migrations/0_4_to_0_5.html#senders-and-messages","migrations/0_4_to_0_5.html#initializing-components","migrations/0_4_to_0_5.html#helper-traits","migrations/0_4_to_0_5.html#factories","migrations/0_4_to_0_5.html#the-view-macro","migrations/0_4_to_0_5.html#the-widget-macro","migrations/0_4_to_0_5.html#relmapp","migrations/0_4_to_0_5.html#miscellaneous","migrations/0_4_to_0_5.html#summary","migrations/0_5_to_0_6.html#migration-from-v05-to-v06","migrations/0_5_to_0_6.html#renamed-methods","migrations/0_5_to_0_6.html#actions","migrations/0_6_to_0_7.html#migration-from-v06-to-v07","migrations/0_6_to_0_7.html#component-changes","migrations/0_6_to_0_7.html#factory-changes","migrations/0_6_to_0_7.html#example","migrations/0_6_to_0_7.html#other-changes","migrations/0_7_to_0_8.html#migration-from-v07-to-v08"],"index":{"documentStore":{"docInfo":{"0":{"body":57,"breadcrumbs":2,"title":1},"1":{"body":59,"breadcrumbs":2,"title":1},"10":{"body":55,"breadcrumbs":6,"title":2},"100":{"body":170,"breadcrumbs":4,"title":1},"101":{"body":58,"breadcrumbs":5,"title":2},"102":{"body":57,"breadcrumbs":4,"title":1},"103":{"body":300,"breadcrumbs":8,"title":3},"104":{"body":139,"breadcrumbs":7,"title":2},"105":{"body":32,"breadcrumbs":4,"title":1},"106":{"body":59,"breadcrumbs":4,"title":1},"107":{"body":72,"breadcrumbs":4,"title":2},"108":{"body":338,"breadcrumbs":4,"title":2},"109":{"body":392,"breadcrumbs":3,"title":1},"11":{"body":60,"breadcrumbs":6,"title":2},"110":{"body":458,"breadcrumbs":4,"title":2},"111":{"body":55,"breadcrumbs":4,"title":2},"112":{"body":72,"breadcrumbs":4,"title":2},"113":{"body":97,"breadcrumbs":4,"title":2},"114":{"body":98,"breadcrumbs":4,"title":2},"115":{"body":65,"breadcrumbs":4,"title":2},"116":{"body":159,"breadcrumbs":4,"title":2},"117":{"body":155,"breadcrumbs":10,"title":4},"118":{"body":178,"breadcrumbs":8,"title":2},"119":{"body":139,"breadcrumbs":6,"title":3},"12":{"body":66,"breadcrumbs":4,"title":1},"120":{"body":155,"breadcrumbs":4,"title":1},"121":{"body":98,"breadcrumbs":5,"title":2},"122":{"body":29,"breadcrumbs":6,"title":3},"123":{"body":16,"breadcrumbs":4,"title":1},"124":{"body":39,"breadcrumbs":4,"title":1},"125":{"body":45,"breadcrumbs":4,"title":1},"126":{"body":37,"breadcrumbs":4,"title":1},"127":{"body":23,"breadcrumbs":4,"title":1},"128":{"body":30,"breadcrumbs":4,"title":1},"129":{"body":29,"breadcrumbs":5,"title":2},"13":{"body":11,"breadcrumbs":4,"title":1},"130":{"body":28,"breadcrumbs":4,"title":2},"131":{"body":15,"breadcrumbs":3,"title":1},"132":{"body":55,"breadcrumbs":4,"title":2},"133":{"body":33,"breadcrumbs":3,"title":1},"134":{"body":16,"breadcrumbs":3,"title":1},"135":{"body":43,"breadcrumbs":3,"title":1},"136":{"body":13,"breadcrumbs":5,"title":2},"137":{"body":98,"breadcrumbs":5,"title":2},"138":{"body":40,"breadcrumbs":6,"title":3},"139":{"body":14,"breadcrumbs":5,"title":2},"14":{"body":12,"breadcrumbs":5,"title":2},"140":{"body":8,"breadcrumbs":5,"title":2},"141":{"body":64,"breadcrumbs":5,"title":2},"142":{"body":77,"breadcrumbs":5,"title":2},"143":{"body":25,"breadcrumbs":5,"title":2},"144":{"body":142,"breadcrumbs":5,"title":2},"145":{"body":100,"breadcrumbs":5,"title":2},"146":{"body":117,"breadcrumbs":4,"title":1},"147":{"body":38,"breadcrumbs":5,"title":2},"148":{"body":43,"breadcrumbs":4,"title":1},"149":{"body":54,"breadcrumbs":6,"title":3},"15":{"body":34,"breadcrumbs":5,"title":2},"150":{"body":26,"breadcrumbs":5,"title":2},"151":{"body":24,"breadcrumbs":7,"title":4},"152":{"body":33,"breadcrumbs":5,"title":2},"153":{"body":25,"breadcrumbs":7,"title":2},"154":{"body":8,"breadcrumbs":6,"title":1},"155":{"body":9,"breadcrumbs":6,"title":1},"156":{"body":15,"breadcrumbs":7,"title":2},"157":{"body":275,"breadcrumbs":6,"title":1},"158":{"body":8,"breadcrumbs":6,"title":1},"159":{"body":114,"breadcrumbs":7,"title":2},"16":{"body":53,"breadcrumbs":4,"title":2},"160":{"body":615,"breadcrumbs":8,"title":3},"161":{"body":16,"breadcrumbs":6,"title":1},"162":{"body":797,"breadcrumbs":8,"title":3},"163":{"body":9,"breadcrumbs":4,"title":2},"164":{"body":30,"breadcrumbs":7,"title":3},"165":{"body":14,"breadcrumbs":5,"title":1},"166":{"body":30,"breadcrumbs":6,"title":2},"167":{"body":71,"breadcrumbs":5,"title":1},"168":{"body":18,"breadcrumbs":7,"title":3},"169":{"body":109,"breadcrumbs":5,"title":1},"17":{"body":38,"breadcrumbs":4,"title":2},"170":{"body":58,"breadcrumbs":6,"title":2},"171":{"body":60,"breadcrumbs":6,"title":2},"172":{"body":39,"breadcrumbs":6,"title":2},"173":{"body":43,"breadcrumbs":5,"title":1},"174":{"body":73,"breadcrumbs":6,"title":2},"175":{"body":21,"breadcrumbs":6,"title":2},"176":{"body":10,"breadcrumbs":5,"title":1},"177":{"body":7,"breadcrumbs":5,"title":1},"178":{"body":53,"breadcrumbs":5,"title":1},"179":{"body":0,"breadcrumbs":7,"title":3},"18":{"body":11,"breadcrumbs":3,"title":1},"180":{"body":2,"breadcrumbs":6,"title":2},"181":{"body":9,"breadcrumbs":5,"title":1},"182":{"body":0,"breadcrumbs":7,"title":3},"183":{"body":36,"breadcrumbs":6,"title":2},"184":{"body":14,"breadcrumbs":6,"title":2},"185":{"body":62,"breadcrumbs":5,"title":1},"186":{"body":16,"breadcrumbs":5,"title":1},"187":{"body":29,"breadcrumbs":7,"title":3},"19":{"body":13,"breadcrumbs":3,"title":1},"2":{"body":17,"breadcrumbs":3,"title":2},"20":{"body":62,"breadcrumbs":3,"title":1},"21":{"body":333,"breadcrumbs":5,"title":3},"22":{"body":20,"breadcrumbs":4,"title":2},"23":{"body":77,"breadcrumbs":3,"title":1},"24":{"body":59,"breadcrumbs":3,"title":1},"25":{"body":171,"breadcrumbs":4,"title":2},"26":{"body":38,"breadcrumbs":4,"title":2},"27":{"body":152,"breadcrumbs":4,"title":2},"28":{"body":26,"breadcrumbs":3,"title":1},"29":{"body":36,"breadcrumbs":3,"title":1},"3":{"body":9,"breadcrumbs":3,"title":2},"30":{"body":65,"breadcrumbs":3,"title":1},"31":{"body":34,"breadcrumbs":4,"title":2},"32":{"body":21,"breadcrumbs":4,"title":2},"33":{"body":120,"breadcrumbs":4,"title":2},"34":{"body":43,"breadcrumbs":4,"title":2},"35":{"body":47,"breadcrumbs":6,"title":4},"36":{"body":13,"breadcrumbs":4,"title":2},"37":{"body":35,"breadcrumbs":4,"title":2},"38":{"body":54,"breadcrumbs":4,"title":2},"39":{"body":26,"breadcrumbs":5,"title":3},"4":{"body":44,"breadcrumbs":2,"title":1},"40":{"body":27,"breadcrumbs":6,"title":4},"41":{"body":84,"breadcrumbs":5,"title":3},"42":{"body":29,"breadcrumbs":5,"title":3},"43":{"body":47,"breadcrumbs":4,"title":2},"44":{"body":98,"breadcrumbs":4,"title":2},"45":{"body":53,"breadcrumbs":4,"title":2},"46":{"body":34,"breadcrumbs":3,"title":1},"47":{"body":26,"breadcrumbs":6,"title":4},"48":{"body":115,"breadcrumbs":6,"title":3},"49":{"body":80,"breadcrumbs":5,"title":1},"5":{"body":21,"breadcrumbs":2,"title":1},"50":{"body":59,"breadcrumbs":6,"title":2},"51":{"body":74,"breadcrumbs":6,"title":2},"52":{"body":39,"breadcrumbs":8,"title":4},"53":{"body":58,"breadcrumbs":5,"title":1},"54":{"body":89,"breadcrumbs":5,"title":1},"55":{"body":73,"breadcrumbs":5,"title":1},"56":{"body":35,"breadcrumbs":6,"title":2},"57":{"body":122,"breadcrumbs":6,"title":2},"58":{"body":36,"breadcrumbs":6,"title":2},"59":{"body":218,"breadcrumbs":6,"title":2},"6":{"body":39,"breadcrumbs":3,"title":2},"60":{"body":30,"breadcrumbs":5,"title":1},"61":{"body":70,"breadcrumbs":6,"title":2},"62":{"body":18,"breadcrumbs":5,"title":1},"63":{"body":9,"breadcrumbs":7,"title":3},"64":{"body":80,"breadcrumbs":7,"title":3},"65":{"body":80,"breadcrumbs":6,"title":2},"66":{"body":67,"breadcrumbs":6,"title":2},"67":{"body":32,"breadcrumbs":6,"title":2},"68":{"body":13,"breadcrumbs":6,"title":2},"69":{"body":41,"breadcrumbs":6,"title":2},"7":{"body":28,"breadcrumbs":4,"title":2},"70":{"body":96,"breadcrumbs":6,"title":2},"71":{"body":65,"breadcrumbs":6,"title":2},"72":{"body":106,"breadcrumbs":7,"title":3},"73":{"body":13,"breadcrumbs":6,"title":2},"74":{"body":279,"breadcrumbs":6,"title":2},"75":{"body":62,"breadcrumbs":7,"title":2},"76":{"body":96,"breadcrumbs":6,"title":1},"77":{"body":77,"breadcrumbs":7,"title":2},"78":{"body":72,"breadcrumbs":2,"title":1},"79":{"body":15,"breadcrumbs":3,"title":2},"8":{"body":32,"breadcrumbs":4,"title":1},"80":{"body":79,"breadcrumbs":3,"title":2},"81":{"body":31,"breadcrumbs":3,"title":2},"82":{"body":40,"breadcrumbs":3,"title":2},"83":{"body":55,"breadcrumbs":2,"title":1},"84":{"body":69,"breadcrumbs":2,"title":1},"85":{"body":19,"breadcrumbs":3,"title":2},"86":{"body":49,"breadcrumbs":2,"title":1},"87":{"body":108,"breadcrumbs":2,"title":1},"88":{"body":7,"breadcrumbs":3,"title":2},"89":{"body":102,"breadcrumbs":2,"title":1},"9":{"body":39,"breadcrumbs":4,"title":1},"90":{"body":160,"breadcrumbs":2,"title":1},"91":{"body":42,"breadcrumbs":2,"title":1},"92":{"body":42,"breadcrumbs":2,"title":1},"93":{"body":310,"breadcrumbs":3,"title":2},"94":{"body":104,"breadcrumbs":3,"title":1},"95":{"body":37,"breadcrumbs":4,"title":2},"96":{"body":84,"breadcrumbs":6,"title":4},"97":{"body":65,"breadcrumbs":6,"title":4},"98":{"body":26,"breadcrumbs":4,"title":1},"99":{"body":120,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"Matrix Relm4 on crates.io Relm4 docs Relm4 is an idiomatic GUI library inspired by Elm and based on gtk4-rs . It is a new version of relm that's built from scratch and is compatible with GTK4 and libadwaita . We believe that GUI development should be easy, productive and delightful. The gtk4-rs crate already provides everything you need to write modern, beautiful and cross-platform applications. Built on top of this foundation, Relm4 makes developing more idiomatic, simpler and faster and enables you to become productive in just a few hours.","breadcrumbs":"Introduction » Why Relm4","id":"0","title":"Why Relm4"},"1":{"body":"To work with Relm4, you should understand most basic language features of the Rust programming language. We recommend to at least be familiar with the content of the chapters 1, 3-6, 8, 10 and 13 of the Rust book . I also recommend reading the gtk4-rs book for getting more insight into development with gtk4-rs. Yet, knowledge of GTK4 or gtk4-rs is not required in this book. Helpful links: How to install GTK4 for Rust gtk4-rs book gtk4-rs docs Cargo: Add the packages you need to your Cargo.toml: relm4 = \"0.9.1\"\nrelm4-components = \"0.9.1\"","breadcrumbs":"Introduction » Requirements","id":"1","title":"Requirements"},"10":{"body":"Input messages are a way for our components to receive information, think of them as our inbox 📬. Let's look at it with a simple MailboxComponent example: We have our Inbox, capable of receiving emails from other people. enum Inbox { GetEmail(Email),\n} These messages are received by our component and handled in the update function. fn update(&mut self, message: Self::Input, ...) { match message { Inbox::GetEmail(email) => self.emails.push(email) }\n} Our MailboxComponent can not only receive emails from other people, but we can also send emails to ourselves. Components work in the same way, they can either receive messages from other components or send themselves messages to update their own model.","breadcrumbs":"Basic concepts » Messages » Input » Input messages","id":"10","title":"Input messages"},"100":{"body":"In this chapter, we'll have a look at commands, which are a simple yet extremely powerful mechanism to offload both CPU-bound and I/O-bound tasks to a separate runtime. Commands are background tasks that can be spawned using a ComponentSender or FactorySender. They run until they return their result as a CommandOutput message that will be processed by the component. First, we define our message type so we can use it for the associated CommandOutput type in our component. #[derive(Debug)]\nenum CommandMsg { Data(RemoteData),\n} impl Component for CommandModel { type CommandOutput = CommandMsg; Note: This only works with the Component trait. The simplified SimpleComponent trait doesn't support commands. In our update function, we start a new command using the oneshot_command() method. This method allows us to spawn a future that will yield exactly one CommandOutput message at completion. From the command, we call an asynchronous function that will handle the web request for us. Once the future completes, the command returns a CommandMsg. fn update(&mut self, msg: Self::Input, sender: ComponentSender, _: &Self::Root) { match msg { CommandModelMsg::FetchData => { sender.oneshot_command(async { // Run async background task CommandMsg::Data(fetch_data().await) }); } } } Now, we can process the CommandMsg similar to regular app updates. The method we use is called update_cmd() and is very similar to the regular update() function. Only the message type is CommandOutput instead of Input. From here, we can simply assign the result of the web request to our model. fn update_cmd( &mut self, message: Self::CommandOutput, _sender: ComponentSender, _: &Self::Root, ) { match message { CommandMsg::Data(data) => self.remote_data = data, } } That's it! It's really as simple as starting a task and processing a message on completion. With the command() method, you are even more flexible because you can send multiple messages.","breadcrumbs":"Threads and async » Commands » Commands","id":"100","title":"Commands"},"101":{"body":"You can use commands for synchronous operations, too. Compared to the asynchronous methods, we need to add the spawn_ prefix to the method name to get the synchronous version. Then, you can just pass a closure or a function pointer as task. fn update(&mut self, msg: Self::Input, sender: ComponentSender, _: &Self::Root) { match msg { CommandModelMsg::FetchData => { sender.spawn_oneshot_command(|| { // Run CPU-bound background task CommandMsg::Data(compute_result()) }); } } } The rest is identical to the asynchronous version. fn update_cmd( &mut self, message: Self::CommandOutput, _sender: ComponentSender, _: &Self::Root, ) { match message { CommandMsg::Data(data) => self.remote_data = data, } }","breadcrumbs":"Threads and async » Commands » Synchronous tasks","id":"101","title":"Synchronous tasks"},"102":{"body":"Commands run on a tokio runtime. If you spawn a lot of commands in your application or want to fine-tune the runtime, you can set two static variables at the start of your main function to override the default value. For example, Relm4 only uses one thread for asynchronous background tasks, which might not be enough. Setting RELM_THREADS to 4 will increase the thread count by 3 additional threads. Note: Setting the static variables must be done early. As soon as the runtime is initialized (which happens when it's accessed for the first time), the values cannot be changed anymore.","breadcrumbs":"Threads and async » Commands » Configuration","id":"102","title":"Configuration"},"103":{"body":"Asynchronous components and factories are almost identical compared to regular components and factories. The only major difference is that they have asynchronous init, update and update_cmd methods. This allows you to await almost everywhere from within the component. The app we will write in this chapter is also available here . Run cargo run --example simple_async from the example directory if you want to see the code in action. Because Rust doesn't support async traits yet, we need macros to add support for this feature. To tell the component macro that we're using an async trait, we pass the async parameter to it. The component macro will then utilize the async_trait crate behind the scenes to make everything work. Also, we need to use AsyncComponent instead of Component as trait. Apart from that, the first section is identical. Similarly, the factory macro needs the async parameter for async factories and the trait changes from FactoryComponent to AsyncFactoryComponent. #[relm4::component(async)]\nimpl AsyncComponent for App { type Init = u8; type Input = Msg; type Output = (); type CommandOutput = (); Most functions of async component and factory traits are asynchronous, which allows us to await on futures within those functions. Apart from that, only a couple of types need to be adjusted for the async versions of the traits, for example AsyncComponentSender and AsyncComponentParts. async fn init( counter: Self::Init, root: Self::Root, sender: AsyncComponentSender, ) -> AsyncComponentParts { tokio::time::sleep(Duration::from_secs(1)).await; let model = App { counter }; // Insert the code generation of the view! macro here let widgets = view_output!(); AsyncComponentParts { model, widgets } } Awaiting in the init function allows us to perform a late initialization. Depending on how you implement the init function, it might take a long time to complete. Not showing anything in this case can look very odd. Therefore, Relm4 allows you to specify widgets that will be displayed while your async component is initialized. If your init function doesn't await or completes quickly, you don't need to implement init_loading_widgets. fn init_loading_widgets(root: Self::Root) -> Option { view! { #[local] root { set_title: Some(\"Simple app\"), set_default_size: (300, 100), // This will be removed automatically by // LoadingWidgets when the full view has loaded #[name(spinner)] gtk::Spinner { start: (), set_halign: gtk::Align::Center, } } } Some(LoadingWidgets::new(root, spinner)) } In this case, we do some basic initialization of our root widget upfront and also add a Spinner for a nice loading animation. As soon as the init function returns, the temporary spinner will be removed automatically and the widgets from the view! macro will be inserted instead. Finally, the update function completes the trait implementation. Notably, awaiting slow futures will block the processing of further messages. In other words, the update function can only process one message afters the other. Because we use async however, this only affects each async component individually and all other components won't be affected. If you want to process multiple messages at the same time, you should consider using commands. async fn update( &mut self, msg: Self::Input, _sender: AsyncComponentSender, _root: &Self::Root, ) { tokio::time::sleep(Duration::from_secs(1)).await; match msg { Msg::Increment => { self.counter = self.counter.wrapping_add(1); } Msg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }","breadcrumbs":"Threads and async » Async components and factories » Async components and factories","id":"103","title":"Async components and factories"},"104":{"body":"use std::time::Duration; use gtk::prelude::*;\nuse relm4::{ component::{AsyncComponent, AsyncComponentParts, AsyncComponentSender}, gtk, loading_widgets::LoadingWidgets, view, RelmApp, RelmWidgetExt,\n}; struct App { counter: u8,\n} #[derive(Debug)]\nenum Msg { Increment, Decrement,\n} #[relm4::component(async)]\nimpl AsyncComponent for App { type Init = u8; type Input = Msg; type Output = (); type CommandOutput = (); view! { gtk::Window { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => Msg::Increment, }, gtk::Button { set_label: \"Decrement\", connect_clicked => Msg::Decrement, }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } fn init_loading_widgets(root: Self::Root) -> Option { view! { #[local] root { set_title: Some(\"Simple app\"), set_default_size: (300, 100), // This will be removed automatically by // LoadingWidgets when the full view has loaded #[name(spinner)] gtk::Spinner { start: (), set_halign: gtk::Align::Center, } } } Some(LoadingWidgets::new(root, spinner)) } async fn init( counter: Self::Init, root: Self::Root, sender: AsyncComponentSender, ) -> AsyncComponentParts { tokio::time::sleep(Duration::from_secs(1)).await; let model = App { counter }; // Insert the code generation of the view! macro here let widgets = view_output!(); AsyncComponentParts { model, widgets } } async fn update( &mut self, msg: Self::Input, _sender: AsyncComponentSender, _root: &Self::Root, ) { tokio::time::sleep(Duration::from_secs(1)).await; match msg { Msg::Increment => { self.counter = self.counter.wrapping_add(1); } Msg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.simple_async\"); app.run_async::(0);\n}","breadcrumbs":"Threads and async » Async components and factories » The complete code","id":"104","title":"The complete code"},"105":{"body":"Option Synchronous Async Non-blocking !Send Workers ✅ ❌ ❌ ❌ Async components and factories ❌ ✅ ❌ ✅ Commands ✅ ✅ ✅ ❌ In this context, non-blocking means you can have run multiple instances at the same time. !Send means that the types involved don't need to implement Send so you can use widgets or Rc for example.","breadcrumbs":"Threads and async » Overview » Overview","id":"105","title":"Overview"},"106":{"body":"Async components and factories: Run asynchronous tasks on the main runtime Allow other components to keep running while awaiting futures Await during initialization or updates Commands: Run tasks on a runtime in the background Supports both synchronous and asynchronous tasks Run several tasks in parallel Drop tasks as soon as the component is destroyed Workers: Handle IO-bound or CPU-intensive tasks one at the time on a different thread The update function should be executed in another thread You need a model to store state for processing messages","breadcrumbs":"Threads and async » Overview » Summary","id":"106","title":"Summary"},"107":{"body":"In this chapter, we will implement a simple alert dialog as a reusable child component. The alert example in the Relm4 repository implements a simple app for the alert component that we will write in this chapter. It's an other variant of a counter app, yet this time a dialog will be displayed if the counter does not match 42 when closing. The main difference in the implementation is, that the dialog is implemented as component that can be reused in other applications. App screenshot dark This is how the dialog looks like in the alert example: App screenshot dark If you want to see an alert component very similar to the one we will write in this chapter, have a look at the “alert” example . Run cargo run --example alert from the relm4-components/examples directory if you want to see the code in action.","breadcrumbs":"Child components » Child components","id":"107","title":"Child components"},"108":{"body":"The alert component is defined similar to the other components we've implemented in this book. Our model stores whether the component is visible and the configuration. /// Alert dialog component.\npub struct Alert { settings: AlertSettings, is_active: bool,\n} We define a Widgets, Init, Input and Output type as usual. type Widgets = AlertWidgets; type Init = AlertSettings; type Input = AlertMsg; type Output = AlertResponse; The Init param is a settings object that is used to configure the component. This maximizes the reusability of the component by letting it adapt to different use-cases. /// Configuration for the alert dialog component\npub struct AlertSettings { /// Large text pub text: String, /// Optional secondary, smaller text pub secondary_text: Option, /// Modal dialogs freeze other windows as long they are visible pub is_modal: bool, /// Sets color of the accept button to red if the theme supports it pub destructive_accept: bool, /// Text for confirm button pub confirm_label: String, /// Text for cancel button pub cancel_label: String, /// Text for third option button. If [`None`] the third button won't be created. pub option_label: Option,\n} In the Input type, this component uses #[doc(hidden)] on the Response variant. This is a useful pattern for component-internal messages that are not intended to be sent by outside callers. This allows us to update the component when the underlying dialog reports a response, but not display the Response variant in the component's documentation. /// Messages that can be sent to the alert dialog component\n#[derive(Debug)]\npub enum AlertMsg { /// Message sent by the parent to view the dialog Show, #[doc(hidden)] Response(gtk::ResponseType),\n} The Output type allows us to report the user's response back to a parent component. /// User action performed on the alert dialog.\n#[derive(Debug)]\npub enum AlertResponse { /// User clicked confirm button. Confirm, /// User clicked cancel button. Cancel, /// User clicked user-supplied option. Option,\n} The update function handles the Show message from our parent component and the Response messages generated by user interactions. It also sends the appropriate messages to the parent through the output sender. fn update(&mut self, input: AlertMsg, sender: ComponentSender) { match input { AlertMsg::Show => { self.is_active = true; } AlertMsg::Response(ty) => { self.is_active = false; sender .output(match ty { gtk::ResponseType::Accept => AlertResponse::Confirm, gtk::ResponseType::Other(_) => AlertResponse::Option, _ => AlertResponse::Cancel, }) .unwrap(); } } } When initializing the model, we conditionally set up some widgets based on the settings passed by the caller. We set is_active to false since the dialog is not currently displayed. fn init( settings: AlertSettings, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Alert { settings, is_active: false, }; let widgets = view_output!(); if let Some(option_label) = &model.settings.option_label { widgets .dialog .add_button(option_label, gtk::ResponseType::Other(0)); } if model.settings.destructive_accept { let accept_widget = widgets .dialog .widget_for_response(gtk::ResponseType::Accept) .expect(\"No button for accept response set\"); accept_widget.add_css_class(\"destructive-action\"); } ComponentParts { model, widgets } } Lastly, the view. Note that the component connects to the response signal of the underlying dialog and sends an input to itself when a response is received. view! { #[name = \"dialog\"] gtk::MessageDialog { set_message_type: gtk::MessageType::Question, #[watch] set_visible: model.is_active, connect_response[sender] => move |_, response| { sender.input(AlertMsg::Response(response)); }, // Apply configuration set_text: Some(&model.settings.text), set_secondary_text: model.settings.secondary_text.as_deref(), set_modal: model.settings.is_modal, add_button: (&model.settings.confirm_label, gtk::ResponseType::Accept), add_button: (&model.settings.cancel_label, gtk::ResponseType::Cancel), } }","breadcrumbs":"Child components » The alert component","id":"108","title":"The alert component"},"109":{"body":"With the component complete, let's use it! struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement, CloseRequest, Save, Close, Ignore,\n} #[relm4::component]\nimpl SimpleComponent for App { type Input = AppMsg; type Output = (); type Init = (); view! { main_window = gtk::ApplicationWindow { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop }, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, append = >k::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, append = >k::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, append = >k::Label { set_margin_all: 5, #[watch] set_label: &format!(\"Counter: {}\", model.counter), }, append = >k::Button { set_label: \"Close\", connect_clicked[sender] => move |_| { sender.input(AppMsg::CloseRequest); }, }, }, } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } AppMsg::Save => { println!(\"* Open save dialog here *\"); } AppMsg::Close => { relm4::main_application().quit(); } AppMsg::Ignore => (), } } fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } }\n} fn convert_alert_response(response: AlertResponse) -> AppMsg { match response { AlertResponse::Confirm => AppMsg::Close, AlertResponse::Cancel => AppMsg::Ignore, AlertResponse::Option => AppMsg::Save, }\n} fn main() { let app = RelmApp::new(\"relm4.example.alert\"); app.run::(());\n} This is mostly stuff that we've already done in previous chapters, but there are a few additional things to know about interacting with child components. Notably, we need to wrap the types of the child components in Controllers to be able to store them in the App model. struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} We initialize them with the builder pattern in the init method. fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } } We call transient_for(root) on the builder to indicate to GTK that our root widget is transient for the main application window. This allows window managers to handle the dialog window differently, e.g. by drawing it on top of other windows. See the set_transient_for documentation for more information. AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } That's it! You can find more examples of reusable components in the relm4-components crate here . You can also contribute your own reusable components to relm4-components :)","breadcrumbs":"Child components » Usage","id":"109","title":"Usage"},"11":{"body":"Output messages are sent by components to other components and handled differently depending on the type of components that receives them. We can think of them as our outbox 🚚. Let's take our previous MailboxComponent example and add the following. enum Outbox { SendEmail(Email),\n} We can modify our previous example for forward the emails to somebody else. fn update(&mut self, message: Self::Input, sender: ComponentSender) { match message { Inbox::GetEmail(email) => sender.output(Outbox::SendEmail(email)), }\n} Usually, output messages are handled by the parent component, which is the component that creates and stores our MailboxComponent. You can think of it like a tree with one component at the root and many child components that branch out.","breadcrumbs":"Basic concepts » Messages » Output » Output messages","id":"11","title":"Output messages"},"110":{"body":"Let’s review all our code in one piece one more time to see how all these parts work together: use gtk::prelude::*;\nuse relm4::prelude::*;\nuse relm4::Controller; /// Configuration for the alert dialog component\npub struct AlertSettings { /// Large text pub text: String, /// Optional secondary, smaller text pub secondary_text: Option, /// Modal dialogs freeze other windows as long they are visible pub is_modal: bool, /// Sets color of the accept button to red if the theme supports it pub destructive_accept: bool, /// Text for confirm button pub confirm_label: String, /// Text for cancel button pub cancel_label: String, /// Text for third option button. If [`None`] the third button won't be created. pub option_label: Option,\n} /// Alert dialog component.\npub struct Alert { settings: AlertSettings, is_active: bool,\n} /// Messages that can be sent to the alert dialog component\n#[derive(Debug)]\npub enum AlertMsg { /// Message sent by the parent to view the dialog Show, #[doc(hidden)] Response(gtk::ResponseType),\n} /// User action performed on the alert dialog.\n#[derive(Debug)]\npub enum AlertResponse { /// User clicked confirm button. Confirm, /// User clicked cancel button. Cancel, /// User clicked user-supplied option. Option,\n} /// Widgets of the alert dialog component.\n#[relm4::component(pub)]\nimpl SimpleComponent for Alert { type Widgets = AlertWidgets; type Init = AlertSettings; type Input = AlertMsg; type Output = AlertResponse; view! { #[name = \"dialog\"] gtk::MessageDialog { set_message_type: gtk::MessageType::Question, #[watch] set_visible: model.is_active, connect_response[sender] => move |_, response| { sender.input(AlertMsg::Response(response)); }, // Apply configuration set_text: Some(&model.settings.text), set_secondary_text: model.settings.secondary_text.as_deref(), set_modal: model.settings.is_modal, add_button: (&model.settings.confirm_label, gtk::ResponseType::Accept), add_button: (&model.settings.cancel_label, gtk::ResponseType::Cancel), } } fn init( settings: AlertSettings, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Alert { settings, is_active: false, }; let widgets = view_output!(); if let Some(option_label) = &model.settings.option_label { widgets .dialog .add_button(option_label, gtk::ResponseType::Other(0)); } if model.settings.destructive_accept { let accept_widget = widgets .dialog .widget_for_response(gtk::ResponseType::Accept) .expect(\"No button for accept response set\"); accept_widget.add_css_class(\"destructive-action\"); } ComponentParts { model, widgets } } fn update(&mut self, input: AlertMsg, sender: ComponentSender) { match input { AlertMsg::Show => { self.is_active = true; } AlertMsg::Response(ty) => { self.is_active = false; sender .output(match ty { gtk::ResponseType::Accept => AlertResponse::Confirm, gtk::ResponseType::Other(_) => AlertResponse::Option, _ => AlertResponse::Cancel, }) .unwrap(); } } }\n} struct App { counter: u8, alert_toggle: bool, dialog: Controller, second_dialog: Controller,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement, CloseRequest, Save, Close, Ignore,\n} #[relm4::component]\nimpl SimpleComponent for App { type Input = AppMsg; type Output = (); type Init = (); view! { main_window = gtk::ApplicationWindow { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop }, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, append = >k::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, append = >k::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, append = >k::Label { set_margin_all: 5, #[watch] set_label: &format!(\"Counter: {}\", model.counter), }, append = >k::Button { set_label: \"Close\", connect_clicked[sender] => move |_| { sender.input(AppMsg::CloseRequest); }, }, }, } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } AppMsg::CloseRequest => { if self.counter == 42 { relm4::main_application().quit(); } else { self.alert_toggle = !self.alert_toggle; if self.alert_toggle { self.dialog.emit(AlertMsg::Show); } else { self.second_dialog.emit(AlertMsg::Show); } } } AppMsg::Save => { println!(\"* Open save dialog here *\"); } AppMsg::Close => { relm4::main_application().quit(); } AppMsg::Ignore => (), } } fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = App { counter: 0, alert_toggle: false, dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (First alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), second_dialog: Alert::builder() .transient_for(&root) .launch(AlertSettings { text: String::from(\"Do you want to quit without saving? (Second alert)\"), secondary_text: Some(String::from(\"Your counter hasn't reached 42 yet\")), confirm_label: String::from(\"Close without saving\"), cancel_label: String::from(\"Cancel\"), option_label: Some(String::from(\"Save\")), is_modal: true, destructive_accept: true, }) .forward(sender.input_sender(), convert_alert_response), }; let widgets = view_output!(); ComponentParts { model, widgets } }\n} fn convert_alert_response(response: AlertResponse) -> AppMsg { match response { AlertResponse::Confirm => AppMsg::Close, AlertResponse::Cancel => AppMsg::Ignore, AlertResponse::Option => AppMsg::Save, }\n} fn main() { let app = RelmApp::new(\"relm4.example.alert\"); app.run::(());\n}","breadcrumbs":"Child components » The complete code","id":"110","title":"The complete code"},"111":{"body":"Widget templates are a simple way to define reusable UI elements. When building complex UIs, they allow you to focus on the application logic instead of complex trees of widgets. Yet most importantly, widget templates help you to reduce redundant code. For example, if you use a widget with the same properties multiple times in your code, templates will make your code a lot shorter. The app we will write in this chapter is also available here . Run cargo run --example widget_template from the example directory if you want to see the code in action.","breadcrumbs":"Widget templates » Widget templates","id":"111","title":"Widget templates"},"112":{"body":"To define a widget template, you need to implement the WidgetTemplate trait for a new type. You could do this manually, but the easiest solution is to use the #[relm4::widget_template] attribute macro. The macro will create the type and implement the trait for you. For example, the following code block will create a template for a gtk::Box with a certain margin and custom CSS. #[relm4::widget_template]\nimpl WidgetTemplate for MyBox { view! { gtk::Box { set_margin_all: 10, // Make the boxes visible inline_css: \"border: 2px solid blue\", } }\n} Similarly, we can create a template for a gtk::Spinner that already spins when it's created. #[relm4::widget_template]\nimpl WidgetTemplate for MySpinner { view! { gtk::Spinner { set_spinning: true, } }\n} To create public templates, you can use #[relm4::widget_template(pub)], similar to the #[relm4::component(pub)] macro.","breadcrumbs":"Widget templates » Defining templates","id":"112","title":"Defining templates"},"113":{"body":"Templates are more than just pre-initialized widgets. They can also have children, which can be referred to later as template children. This is very useful if you use nested widget in you UI, because the template allows you to flatten the structure. In other words, no matter how deeply nested a template child is, it will always be accessible directly from the template. We'll see how this works in the next section, but first we'll create a deeply nested template. We use the templates we defined earlier by using the #[template] attribute. Also, we assign the name child_label to our last widget, which is all we need to make it a template child. In general, naming a widget in a template is all that's needed to make it a template child. #[relm4::widget_template]\nimpl WidgetTemplate for CustomBox { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, // Deeply nested! #[name = \"child_label\"] gtk::Label { set_label: \"This is a test\", } } } } } }\n}","breadcrumbs":"Widget templates » Template children","id":"113","title":"Template children"},"114":{"body":"To use templates in a component, we use the #[template] and #[template_child] attributes. In this case, we use the CustomBox type we just defined with the #[template] attribute we already used. To access its child_label template child, we only need to use the #[template_child] attribute and the name of the child. As you can see, we now have access to the child_label widget, which actually is wrapped into 4 gtk::Box widgets. We can even use assign or overwrite properties of the template and its children, similar to regular widgets. Here, we use the #[watch] attribute to update the label with the latest counter value. #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Widget template\"), set_default_width: 300, set_default_height: 100, #[template] CustomBox { gtk::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, #[template_child] child_label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), } }, } }","breadcrumbs":"Widget templates » Using templates","id":"114","title":"Using templates"},"115":{"body":"If you run this code, you will notice that the label appears above the two buttons, which is contrary to our widget definition. This happens because widget templates are initialized before other modifications happen. The CustomBox template will initialize its child_label and append it to its internal gtk::Box widget and only then the two buttons are added. However, you can work around this by using methods like prepend, append or insert_child_after (if you use a gtk::Box as container) or by splitting your templates into smaller ones. To make template children appear in the same order as they are used, widget templates would require dynamic initialization of its children. This would increase the complexity of the internal implementation by a lot (or might not be possible at all) and is therefore not planned at the moment.","breadcrumbs":"Widget templates » Some notes on orders","id":"115","title":"Some notes on orders"},"116":{"body":"use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{ gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent, WidgetTemplate,\n}; #[relm4::widget_template]\nimpl WidgetTemplate for MyBox { view! { gtk::Box { set_margin_all: 10, // Make the boxes visible inline_css: \"border: 2px solid blue\", } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for MySpinner { view! { gtk::Spinner { set_spinning: true, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for CustomBox { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_margin_all: 5, set_spacing: 5, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, #[template] MyBox { #[template] MySpinner, // Deeply nested! #[name = \"child_label\"] gtk::Label { set_label: \"This is a test\", } } } } } }\n} #[derive(Default)]\nstruct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Widget template\"), set_default_width: 300, set_default_height: 100, #[template] CustomBox { gtk::Button { set_label: \"Increment\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); }, }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); }, }, #[template_child] child_label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), } }, } } fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Self { counter }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: AppMsg, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.widget_template\"); app.run::(0);\n}","breadcrumbs":"Widget templates » The complete code","id":"116","title":"The complete code"},"117":{"body":"Starting from the version 0.6.2 , you can access nested elements on templates. Imagine a template called \"MainWindow\" which contains pages as Widget Templates: #[relm4::widget_template]\nimpl WidgetTemplate for MainWindow { view! { gtk::Window { set_title: Some(\"Nested Widget template\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, #[name(stk_pages)] gtk::Stack { set_margin_all: 7, #[template] #[name = \"home_page\"] add_child = &HomePage {} -> { set_name: \"main\", }, #[template] #[name = \"settings_page\"] add_child = &SettingsPage {} -> { set_name: \"settings\", }, }, }, } }\n} SettingsPage and HomePage are also a widget template: #[relm4::widget_template]\nimpl WidgetTemplate for HomePage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_go_settings\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"emblem-system-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for SettingsPage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_dark_mode\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"night-light-symbolic\"), }, }, #[name = \"btn_go_homepage\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"user-home-symbolic\"), }, }, } }\n} If you want to handle MainWindow->SettingsPage->btn_dark_mode's clicked event, you can simply do it like this: #[derive(Default)]\nstruct AppModel { current_page: &'static str,\n} #[derive(Debug)]\nenum Message { PageHome, PageSettings, DarkMode,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = Message; type Output = (); view! { #[template] MainWindow { #[template_child] settings_page.btn_dark_mode { connect_clicked => Message::DarkMode }, #[template_child] settings_page.btn_go_homepage { connect_clicked => Message::PageHome }, #[template_child] home_page.btn_go_settings { connect_clicked => Message::PageSettings }, #[template_child] stk_pages { #[watch] set_visible_child_name: model.current_page, } }, }","breadcrumbs":"Widget templates » Accessing Nested Template Elements » Accessing Nested Template Elements","id":"117","title":"Accessing Nested Template Elements"},"118":{"body":"use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmWidgetExt, SimpleComponent, WidgetTemplate}; #[relm4::widget_template]\nimpl WidgetTemplate for HomePage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_go_settings\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"emblem-system-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for SettingsPage { view! { gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 3, #[name = \"btn_dark_mode\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"night-light-symbolic\"), }, }, #[name = \"btn_go_homepage\"] gtk::Button { #[wrap(Some)] set_child = >k::Image { set_icon_name: Some(\"user-home-symbolic\"), }, }, } }\n} #[relm4::widget_template]\nimpl WidgetTemplate for MainWindow { view! { gtk::Window { set_title: Some(\"Nested Widget template\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, #[name(stk_pages)] gtk::Stack { set_margin_all: 7, #[template] #[name = \"home_page\"] add_child = &HomePage {} -> { set_name: \"main\", }, #[template] #[name = \"settings_page\"] add_child = &SettingsPage {} -> { set_name: \"settings\", }, }, }, } }\n} #[derive(Default)]\nstruct AppModel { current_page: &'static str,\n} #[derive(Debug)]\nenum Message { PageHome, PageSettings, DarkMode,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = Message; type Output = (); view! { #[template] MainWindow { #[template_child] settings_page.btn_dark_mode { connect_clicked => Message::DarkMode }, #[template_child] settings_page.btn_go_homepage { connect_clicked => Message::PageHome }, #[template_child] home_page.btn_go_settings { connect_clicked => Message::PageSettings }, #[template_child] stk_pages { #[watch] set_visible_child_name: model.current_page, } }, } fn init( _init_param: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = Self { current_page: \"main\", }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Message, _sender: ComponentSender) { match msg { Message::DarkMode => { println!(\"Mode changed\"); } Message::PageHome => { self.current_page = \"main\"; } Message::PageSettings => { self.current_page = \"settings\"; } } }\n} fn main() {}","breadcrumbs":"Widget templates » Accessing Nested Template Elements » The complete code","id":"118","title":"The complete code"},"119":{"body":"The handling of CLI arguments in Relm4 has some specifics you should be aware of. The first one is that Relm4/GTK tries to parse the arguments again even if you parsed them yourself already. This means the program will crash with an error like Unknown option --non-gtk-arg. To fix this you can use the with_args method to provide the arguments the GTK app should parse. The easiest way is to just provide an empty Vec but this has the disadvantage that the standard GTK arguments don't work anymore. We will now make it work in combination with the popular clap crate. To be precise we will use the derive feature which you can learn about in the clap documentation but it works with the builder pattern too of course. To pass a Vec of GTK arguments we need to separate the arguments we want to consume ourselves from those we want to pass to GTK. In clap you can achieve this using a combination of allow_hyphen_values and trailing_var_arg . #[derive(Parser, Debug)]\n#[command(version, about, long_about = None)]\nstruct Args { /// some argument to test #[arg(long)] non_gtk_arg: bool, /// Unknown arguments or everything after -- gets passed through to GTK. #[arg(allow_hyphen_values = true, trailing_var_arg = true)] gtk_options: Vec,\n} Now in our main function we can parse the CLI arguments using Args::parse() and pass args.gtk_options to GTK/Relm4. The first argument is (as per convention) the program invocation so we need to add that first: let program_invocation = std::env::args().next().unwrap(); let mut gtk_args = vec![program_invocation]; gtk_args.extend(args.gtk_options.clone()); let app = RelmApp::new(\"relm4.test.helloworld_cli\"); app.with_args(gtk_args).run::(());","breadcrumbs":"Command Line Interfaces » Command Line Interfaces","id":"119","title":"Command Line Interfaces"},"12":{"body":"GTK4 provides widgets as building blocks for your UI, like buttons, input fields or text areas. They can visualize data and also receive user inputs. In Relm4, user inputs are usually directly translated into input messages for our components. It's important to understand that widgets behave similar to Rc . Most importantly, this means that: Cloning a widget doesn't create a new instance, but just increases the reference count. Widgets are kept alive automatically. Dropping widgets that are still used somewhere does not destroy them, but just decreases the reference count. Widgets are not thread-safe. Widgets don't implement Send and can only be used on the main thread.","breadcrumbs":"Basic concepts » Widgets » Widgets","id":"12","title":"Widgets"},"120":{"body":"To compile, run and pass arguments to the built binary in one command we can use cargo run -- and pass our arguments after that. If you wonder what the -- means: This is the end of options convention : \"The first -- argument that is not an option-argument should be accepted as a delimiter indicating the end of options. Any following arguments should be treated as operands, even if they begin with the '-' character.\" We can now look at the result using cargo run -- --help: Usage: cli [OPTIONS] [GTK_OPTIONS]... Arguments: [GTK_OPTIONS]... Unknown arguments or everything after -- gets passed through to GTK Options: --non-gtk-arg some argument to test -h, --help Print help -V, --version Print version This is the help text provided by clap. If you want to see the GTK help text you can use cargo run -- -- --help: Usage: cli [OPTION?] Help Options: -h, --help Show help options --help-all Show all help options --help-gapplication Show GApplication options And if the GTK option is unique and not used by your program the (second) -- is not needed anymore, e.g. cargo run -- --help-all: Usage: cli [OPTION?] Help Options: -h, --help Show help options --help-all Show all help options --help-gapplication Show GApplication options GApplication Options: --gapplication-service Enter GApplication service mode (use from D-Bus service files) Of course you can replace cargo run -- by your binary name later, e.g.: your-cool-app --help-all.","breadcrumbs":"Command Line Interfaces » Result","id":"120","title":"Result"},"121":{"body":"Here is a minimal working example code with some debug output: use clap::Parser;\nuse gtk::prelude::GtkWindowExt;\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, SimpleComponent}; struct AppModel {} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = (); type Output = (); view! { gtk::Window { set_title: Some(\"Hello world with CLI\"), set_default_width: 300, set_default_height: 100, gtk::Label { set_label: \"Hello world!\", } } } fn init( _init: Self::Init, root: Self::Root, _sender: ComponentSender, ) -> ComponentParts { let model = AppModel {}; let widgets = view_output!(); ComponentParts { model, widgets } }\n} #[derive(Parser, Debug)]\n#[command(version, about, long_about = None)]\nstruct Args { /// some argument to test #[arg(long)] non_gtk_arg: bool, /// Unknown arguments or everything after -- gets passed through to GTK. #[arg(allow_hyphen_values = true, trailing_var_arg = true)] gtk_options: Vec,\n} fn main() { let args = Args::parse(); dbg!(&args); let program_invocation = std::env::args().next().unwrap(); let mut gtk_args = vec![program_invocation]; gtk_args.extend(args.gtk_options.clone()); let app = RelmApp::new(\"relm4.test.helloworld_cli\"); app.with_args(gtk_args).run::(());\n}","breadcrumbs":"Command Line Interfaces » The complete code","id":"121","title":"The complete code"},"122":{"body":"So far, we only discussed which features Relm4 provides. Yet, Relm4 is based on GTK, which itself has many useful features. Let’s have a look at it! This is just an overview. I’ve linked the relevant sections of the gtk-rs book but if you want to get familiar with all the features, I recommend reading the book from the start.","breadcrumbs":"gtk-rs overview » gtk-rs overview","id":"122","title":"gtk-rs overview"},"123":{"body":"GTK is an object-oriented framework that uses the GObject library to implement objects. GObjects have some really useful features that we will discuss in the following sections.","breadcrumbs":"gtk-rs overview » GObjects","id":"123","title":"GObjects"},"124":{"body":"Like many other OOP frameworks or languages, GObjects can inherit from other GObjects. This is called subclassing. In the case of GTK, that’s really helpful because it allows us to create custom widgets. For example, you could use subclassing to create your own button widget that acts as a counter. Or you can create a custom application window that better suits your application. Read more about subclassing in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Subclassing","id":"124","title":"Subclassing"},"125":{"body":"Each GObject can have properties that work similar to the fields of a structure in Rust. You can set them and you can read (get) them. But one thing that's particularly cool is that properties can be bound to other properties. For example, you could bind the \"visible\" property of a widget to the \"active\" property of a gtk::ToggleButton. This would allow you to show or hide the widget using the toggle button and the best part is, that it's done fully automatically! Read more about properties in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Properties","id":"125","title":"Properties"},"126":{"body":"GObjects can not only have properties but also signals. Actually, we've been using signals all the time, for example, by using the connect_clicked method on a button. This method simply adds an event handler function for the \"click\" signal. You can create your own signals in custom widgets. You can also use emit to emit signals on you widgets manually. Read more about signals in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Signals","id":"126","title":"Signals"},"127":{"body":"Most applications need to store settings at some point. GTK makes that pretty simple. You can use gtk::Settings to store your settings and keep them stored after your app has been closed. Read more about settings in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Settings","id":"127","title":"Settings"},"128":{"body":"Relm4 has factories for generating widgets from collections of data. GTK has a similar mechanism that should be used for large list. Because GTK knows which widgets of a list are actually shown it can optimize the rendering and memory usage a lot better. Read more about lists in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Lists","id":"128","title":"Lists"},"129":{"body":"Relm4 leaves it up to you how to create your UI. You can do it manually like in our first app, you can do with the widget macro or you can use the interface builder from GTK. With composite templates, you can use a XML file to specify your widgets and properties. Read more about the composite templates in the gtk-rs book .","breadcrumbs":"gtk-rs overview » Composite templates","id":"129","title":"Composite templates"},"13":{"body":"Components are the fundamental building blocks of Relm4. To create a component you need to implement the Component trait.","breadcrumbs":"Basic concepts » Components » Components","id":"13","title":"Components"},"130":{"body":"Some Relm4 apps require static assets or resources (such as icons or images) to function. In GTK apps, static assets are transformed into GResource bundles, which are then loaded by the app. This guide shows how to set up GResource bundles within a Relm4 project.","breadcrumbs":"Resource Bundles » Resource Bundles","id":"130","title":"Resource Bundles"},"131":{"body":"This demonstrates a Cargo-only approach to including resources (i.e. it does not require extra build tools like Meson, or out-of-band shell scripts).","breadcrumbs":"Resource Bundles » Cargo","id":"131","title":"Cargo"},"132":{"body":"We add the static resources (in this example, icon files), plus a gresource descriptor, to the project's data folder: data/ icons/ icon-foo.svg icon-bar.svg icons.gresource.xml The icons are placed under the data/icons directory. The icons.gresource.xml file looks like this (adapt it as required, e.g. using -symbolic icon names): \n icons/icon-foo.svg icons/icon-bar.svg \n","breadcrumbs":"Resource Bundles » data directory","id":"132","title":"data directory"},"133":{"body":"In Cargo.toml, we add a build dependency on glib-build-tools. This gives us access to the glib_build_tools::compile_resources function which we will need later: [package]\nname = \"foobar\" [build-dependencies]\nglib-build-tools = \"0.17.10\" Note: you should ensure that the glib-build-tools version aligns with the general GLib version you are building for.","breadcrumbs":"Resource Bundles » Cargo.toml","id":"133","title":"Cargo.toml"},"134":{"body":"In build.rs, we call the compile_resources function which creates a GResource bundle from the icons: use glib_build_tools::compile_resources; fn main() { compile_resources( &[\"data\"], \"data/icons.gresource.xml\", \"icons.gresource\", );\n}","breadcrumbs":"Resource Bundles » build.rs","id":"134","title":"build.rs"},"135":{"body":"In main.rs (or wherever you initialise your Relm4 app), we load the icons.gresource bundle that Cargo generates: fn initialize_custom_icons() { gio::resources_register_include!(\"icons.gresource\").unwrap(); let display = gdk::Display::default().unwrap(); let theme = gtk::IconTheme::for_display(&display); theme.add_resource_path(\"/com/example/Foobar/icons\");\n} fn main() { let app = RelmApp::new(\"com.example.Foobar\"); // (optional) initialize default icons relm4_icons::initialize_icons(); // custom icons initialize_custom_icons();\n} It should now be possible to reference the resources by name within your app, for example: view! { gtk::Button { set_icon_name: \"icon-foo\" }\n}","breadcrumbs":"Resource Bundles » main.rs","id":"135","title":"main.rs"},"136":{"body":"We recommend that you establish a CI build for your Relm4 app. This guide describes how to do it, and the caveats you must observe to make the build work.","breadcrumbs":"Continuous Integration guide » Continuous Integration","id":"136","title":"Continuous Integration"},"137":{"body":"Starting with Relm 0.6.1, you can set up a CI build for your app on GitHub Actions. We recommend that you use the gtk4-rs container approach, as shown below: name: Rust on: push: branches: [ \"main\" ] pull_request: branches: [ \"main\" ] jobs: build: runs-on: ubuntu-latest container: image: ghcr.io/gtk-rs/gtk4-rs/gtk4:latest # TODO enable minor version tags / pinning steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable - name: Build run: cargo build - name: Test run: cargo test Note: You can alternatively just run the cargo build on the ubuntu-latest base image. However, this will tie your Relm app's GNOME and GTK version to Ubuntu's 2-year LTS release cycle, so you will not be able to use newer GNOME / GTK versions in the meantime. We therefore recommend that most projects use the gtk4-rs container approach instead.","breadcrumbs":"Continuous Integration guide » GitHub Actions","id":"137","title":"GitHub Actions"},"138":{"body":"There are quite a few of examples where the component macro is used in this book. Still, we haven't covered everything in the previous chapters, and it's also nice to have all the information in one place. This chapter serves as an exhaustive reference for the component macro syntax. The component attribute macro expects a trait implementation of SimpleComponent, Component, or FactoryComponent on a user-provided struct that holds the component's state.","breadcrumbs":"Component macro reference » The component macro reference","id":"138","title":"The component macro reference"},"139":{"body":"If you want to make the Widgets struct generated by the macro public, you can provide pub (or any other visibility) as an argument to the attribute macro. #[relm4::component(pub)]","breadcrumbs":"Component macro reference » Public widgets","id":"139","title":"Public widgets"},"14":{"body":"The Component trait is the base of every component inside Relm4, it defines how a component should behave, communicate and produce widgets.","breadcrumbs":"Basic concepts » Components » The Component trait","id":"14","title":"The Component trait"},"140":{"body":"The view! macro allows us to easily define widgets and mutate their properties.","breadcrumbs":"Component macro reference » The view! macro","id":"140","title":"The view! macro"},"141":{"body":"All components must have a root widget in their view! macro, such as gtk::Window or gtk::Box. Widgets are constructed by providing the type of the widget followed by curly braces. This will construct the widget using its Default implementation. view! { gtk::Window { ... }\n} Some, widgets don't have a Default implementation or it may be more convenient to use a constructor method. In this case, you can use the following syntax: // Constructor method\ngtk::Label::new(Some(\"Label from constructor method\")) { /* ... */ } // Builder pattern\ngtk::Label::builder() .label(\"Label from builder pattern\") .selectable(true) .build() { /* ... */ } You can also use regular functions. Because macro often needs to know the type of the widget for code generation, you may need to specify it. set_property_name = new_box() -> gtk::Box { ... }","breadcrumbs":"Component macro reference » Constructing widgets","id":"141","title":"Constructing widgets"},"142":{"body":"Child widgets are added by nesting the declarations. view! { gtk::Window { gtk::Box { } }\n} If another method is needed to assign a child, you can call it instead like this: gtk::Box { // Use append append = >k::Label { ... }\n} Use & in front of the widget type to assign a reference. A common mistake is to accidentally use : instead of = for assigning widgets. If the widget needs to be wrapped in another type (commonly Option), use the wrap attribute: #[wrap(Some)]\nset_property_name = gtk::Box { ... } Sometimes you need to pass additional arguments along with the widget, for example when calling gtk::Grid::attach . You can do this by providing the additional arguments in square brackets after the method: gtk::Grid { // Attach the label to a grid attach[0, 0, 1, 2]= >k::Label { ... }\n} This will expand to __grid.attach(__label, 0, 0, 1, 2)","breadcrumbs":"Component macro reference » Child widgets","id":"142","title":"Child widgets"},"143":{"body":"Widgets may be given a name with the name attribute. These names are accessible as fields on the Widgets struct generated by the macro. #[name = \"important_label\"]\ngtk::Label { ... } // ... let widgets = view_output!();\nlet label = &widgets.important_label; Names can also be assigned with this syntax: set_child: important_label = gtk::Label { ... }","breadcrumbs":"Component macro reference » Naming widgets","id":"143","title":"Naming widgets"},"144":{"body":"The view macro allows you to include if and match statements for conditionally showing widgets. Internally, the macro will use a gtk::Stack, so you can also use different transition types . if model.value % 2 == 0 { gtk::Label { set_label: \"The value is even\", }, gtk::Label { set_label: \"The value is odd\", }\n} // Use a transition type to set an animation when the visible widget changes\n#[transition = \"SlideRight\"]\nmatch model.value { 0..=9 => { gtk::Label { set_label: \"The value is below 10\", }, } _ => { gtk::Label { set_label: \"The value is equal or above 10\", }, }\n} If your conditional widget uses a match statement over an enum, you can destructure the enum in the match arms to access its variables with the help of the #[track] or #[watch] macros: enum Foo { Bar(f32), Baz(String),\n} struct FooView { foo: Foo\n} impl Component for FooView { type Init = Foo; // snip view! { #[root] gtk::Box { append = match &model.foo { Foo::Bar(num_value) => { gtk::SpinButton { // adding the `watch` macro lets you reference the destructured variables #[watch] set_value: num_value } } Foo::Baz(str_value) => { gtk::Label { #[watch] set_text: &str_value } } } } } // snip\n} Please note: if you attempt to destructure in the normal way - without the track or watch macros - you will get a compilation error, and Rust will 'fail to see' the destructured variables at the point where your code uses them. This is due to limitations in Relm4's component initialization strategy. Please ensure that you use one of those macros to avoid this.","breadcrumbs":"Component macro reference » Conditional widgets","id":"144","title":"Conditional widgets"},"145":{"body":"Sometimes, methods used for assigning widgets return another widget. For example, gtk::Stack::add_child() allows you to add a widget to the stack, but also returns a gtk::StackPage widget. To get access to this widget, you can use a special syntax of the view macro: gtk::Stack { add_child = >k::Label { set_label: \"placeholder\", } -> { // Access the returned widgets (in this case gtk::StackPage) set_title: \"page title\", }\n} The returned widget can be named with the following syntax: method = &Widget { ... } -> NAME: RETURNED_TYPE { ... } and can be subsequently accessed via the Widgets struct. In factories the returned widget is a parameter of the FactoryComponent::init_widgets() method. You can use the #[local_ref] attribute to access it in the view macro, for example when the factory widget is a Stack which returns a StackPage: view! { #[root] root = gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_halign: gtk::Align::Center, set_spacing: 10, set_margin_all: 12, #[name(label)] gtk::Label { set_use_markup: true, #[watch] set_label: &format!(\"Counter value: {}\", self.value), set_width_chars: 3, }, }, #[local_ref] returned_widget -> gtk::StackPage { set_name: &self.name, set_title: &self.name, } }","breadcrumbs":"Component macro reference » Returned widgets","id":"145","title":"Returned widgets"},"146":{"body":"Properties are initialized and mutated by calling methods within the widget types. Check the documentation for each widget type to see what methods are available. Generally properties are set via setter methods, but any methods on the widget can also be called. Many of these methods are part of an extension trait associated with the widget type. These traits must be in scope to call their methods. For example, if you want to use the set_default_width method from the GtkWindowExt trait, you must import the trait directly or glob import it from the prelude (use gtk::prelude::*;). To initialize a property with a value: set_property_name: value, Initialize a property only if its value is Some, and do nothing if it's None: set_property_name?: value, Call a method that has multiple arguments: set_property_name: (value1, value2, ...), Initialize and automatically update a property. #[watch]\nset_property_name: (value1, value2, ...), Initialize and automatically update a property with a tracker. The track_expression can be any expression that returns a bool. If it's true, it indicates that the method should be called: #[track(track_expression)]\nset_property_name: (value1, value2, ...), Initialize a property by iterating over an iterator. You can use this for repeated calls to setter functions, like add_class_name in case you have multiple class names in a Vec. #[iterate]\nset_property_name: iterator,","breadcrumbs":"Component macro reference » Properties","id":"146","title":"Properties"},"147":{"body":"It is possible that several traits implement the same method for a type. If both traits are in scope and you want to use the duplicated method name, you need to tell Rust which trait it should use. To specify the intended trait, use the TraitName::method syntax, similar to Rust's fully qualified syntax for trait disambiguation . You can also use the full path of the trait if desired.","breadcrumbs":"Component macro reference » Trait disambiguation","id":"147","title":"Trait disambiguation"},"148":{"body":"When connecting signals emitted by widgets you can clone fields that you need in the closure (for example, the component sender) by listing the corresponding fields in square brackets. connect_name[cloned_var1, cloned_var2, ...] => move |arg1, arg2, ...| { ... } There is a shorthand for sending a message per event handlers like ComponentSender or AsyncComponentSender. connect_clicked => AppMsg::Increase, A member of a struct or the result of a method can also be used inside the closure by assigning it to a variable. connect_name[sender = components.sender.clone()] => move |...| { ... }","breadcrumbs":"Component macro reference » Signals","id":"148","title":"Signals"},"149":{"body":"Some signals are not only emitted after a user interaction, but also when you change values though your code, for example by using #[watch]. This might not be the desired behavior and can even cause your application to freeze under certain circumstances. To avoid this, you can name signal handlers by using an @ and a name after the signal closure. Then, you can use the signal handler name in the #[block_signal(handler_name)] attribute to deactivate the signal handler while you edit a value. gtk::ToggleButton { set_label: \"Counter is even\", #[watch] #[block_signal(toggle_handler)] set_active: counter.value % 2 == 0, connect_toggled[sender] => move |_| { sender.input(AppMsg::Increment); } @toggle_handler, },","breadcrumbs":"Component macro reference » Blocking signals temporarily","id":"149","title":"Blocking signals temporarily"},"15":{"body":"The SimpleComponent trait is a convenience trait that implements the Component trait, but removes some advanced features that are not relevant for most use-cases. For each implementation of SimpleComponent, Relm4 will automatically implement Component as well. Thus, it can also be used instead of Component. This mechanism is called blanket implementation and is used for traits like From in the standard library as well.","breadcrumbs":"Basic concepts » Components » The SimpleComponent trait","id":"15","title":"The SimpleComponent trait"},"150":{"body":"Sometimes the macro isn't flexible enough. In this case, you can always use manual code that will not be modified by the macro. Here's a list of all the options available. #[relm4_macros::component]\nimpl SimpleComponent for App { // ... view! { // ... } additional_fields! { // ... } fn pre_view() { // ... } fn post_view() { // ... }\n}","breadcrumbs":"Component macro reference » Manual code","id":"150","title":"Manual code"},"151":{"body":"The widgets struct is automatically generated by the macro, but you can also add fields manually. additional_fields! { test: u8,\n} Initialize the variable in the init function by naming a local variable like your custom field. let test = 0; let widgets = view_output!();","breadcrumbs":"Component macro reference » Add more fields to your widgets","id":"151","title":"Add more fields to your widgets"},"152":{"body":"You can also implement your own view logic, which will be added to the view code that the macro generates. Code inside pre_view() will run before the code of the macro, and post_view() will run after it. Code inside these \"functions\" isn't like a normal function! The macro disallows returning early in pre_view to ensure that the code of the macro will always be executed.","breadcrumbs":"Component macro reference » Manual view","id":"152","title":"Manual view"},"153":{"body":"To better understand the component macro, we will examine how the different parts of the macro are translated into real Rust code (aka the macro expansion). Therefore, we will write a small app that uses as many component macro features as possible.","breadcrumbs":"Component macro reference » Macro expansion » Macro expansion","id":"153","title":"Macro expansion"},"154":{"body":"First, let's have a look at the parts of the code that are later used by the macro.","breadcrumbs":"Component macro reference » Macro expansion » The boilerplate","id":"154","title":"The boilerplate"},"155":{"body":"The model simply stores a counter. #[tracker::track]\nstruct AppModel { value: u8,\n}","breadcrumbs":"Component macro reference » Macro expansion » The model","id":"155","title":"The model"},"156":{"body":"The message type is the same as in our first app. It includes a message to increment and decrement the counter. #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n}","breadcrumbs":"Component macro reference » Macro expansion » The message type","id":"156","title":"The message type"},"157":{"body":"Before we break it down into smaller parts, let's take a look at the macro as a whole. If you're unfamiliar with the macro syntax, check out the previous chapter. There's a lot here, but that's because the macro supports a lot of functions! #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); view! { #[root] #[name(main_window)] gtk::Window { set_title: Some(\"Macro reference example\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, append: inc_button = >k::Button { set_label: \"Increment\", // Only set this if `icon_name` is Some set_icon_name?: icon_name, connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); } }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); } }, gtk::Grid { attach[1, 1, 1, 1] = >k::Label { // Alternative: #[track = \"counter.value % 10 == 0\"] #[track(counter.value % 10 == 0)] set_label: &format!(\"Grid works! ({})\", counter.value), } }, // A conditional widget // Alternative: #[transition = \"SlideLeft\"] #[transition(SlideLeft)] append = if counter.value % 2 == 0 { gtk::Label { set_label: \"Value is even\", } } else if counter.value % 3 == 0 { gtk::Label { set_label: \"Value is dividable by 3\", } } else { gtk::Label { set_label: \"Value is odd\", } }, #[transition = \"SlideRight\"] append: match_stack = match counter.value { (0..=2) => { gtk::Label { set_label: \"Value is smaller than 3\", } }, _ => { gtk::Label { set_label: \"Value is higher than 2\", } } }, append = >k::Label, gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(), gtk::Label::new(Some(\"Constructors work!\")), /// Counter label gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", counter.value), #[track] set_margin_all: counter.value.into(), }, gtk::ToggleButton { set_label: \"Counter is even\", #[watch] #[block_signal(toggle_handler)] set_active: counter.value % 2 == 0, connect_toggled[sender] => move |_| { sender.input(AppMsg::Increment); } @toggle_handler, }, #[local] local_label -> gtk::Label { set_opacity: 0.7, }, #[local_ref] local_ref_label -> gtk::Label { set_opacity: 0.7, set_size_request: (40, 40), }, } }, gtk::Window { set_title: Some(\"Another window\"), set_default_width: 300, set_default_height: 100, set_transient_for: Some(&main_window), // Empty args hide: (), #[watch] set_visible: counter.value == 42, #[name = \"my_label_name\"] gtk::Label { set_label: \"You made it to 42!\", } } } additional_fields! { test_field: u8, } // Initialize the UI. fn init( init: Self::Init, renamed_root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; // Set icon name randomly to Some(\"go-up-symbolic\") or None let icon_name = rand::random::().then_some(\"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model: counter, widgets, } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } }\n}","breadcrumbs":"Component macro reference » Macro expansion » The macro","id":"157","title":"The macro"},"158":{"body":"The macro expansion is not supposed to be readable, so the code might look a bit ugly.","breadcrumbs":"Component macro reference » Macro expansion » The expansion","id":"158","title":"The expansion"},"159":{"body":"The fields of the widgets struct cover all widgets we created, plus the additional fields we added manually. Named fields like main_window and inc_button keep their names. Unnamed fields will get automatically generated names with an unique ID. You should never refer to unnamed fields in your code because their names might change. At the end, we can find the additional field called test_field that we added manually. #[allow(dead_code)]\nstruct AppWidgets { #[allow(missing_docs)] main_window: gtk::Window, #[allow(missing_docs)] _gtk_box_14: gtk::Box, #[allow(missing_docs)] inc_button: gtk::Button, #[allow(missing_docs)] _gtk_button_0: gtk::Button, #[allow(missing_docs)] _gtk_grid_2: gtk::Grid, #[allow(missing_docs)] _gtk_label_1: gtk::Label, #[allow(missing_docs)] _conditional_widget_3: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_4: gtk::Label, #[allow(missing_docs)] _gtk_label_5: gtk::Label, #[allow(missing_docs)] _gtk_label_6: gtk::Label, #[allow(missing_docs)] match_stack: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_7: gtk::Label, #[allow(missing_docs)] _gtk_label_8: gtk::Label, #[allow(missing_docs)] _gtk_label_9: gtk::Label, #[allow(missing_docs)] _gtk_label_builder_10: gtk::Label, #[allow(missing_docs)] _gtk_label_new_11: gtk::Label, /// Counter label _gtk_label_12: gtk::Label, #[allow(missing_docs)] _gtk_togglebutton_13: gtk::ToggleButton, #[allow(missing_docs)] toggle_handler: relm4::gtk::glib::signal::SignalHandlerId, #[allow(missing_docs)] local_label: gtk::Label, #[allow(missing_docs)] local_ref_label: gtk::Label, #[allow(missing_docs)] _gtk_window_15: gtk::Window, #[allow(missing_docs)] my_label_name: gtk::Label, test_field: u8,\n}","breadcrumbs":"Component macro reference » Macro expansion » The widgets struct","id":"159","title":"The widgets struct"},"16":{"body":"For our first app, let's create something original: a counter app . GTK Light GTK Dark App screenshot light App screenshot dark Adwaita Light Adwaita Dark App screenshot light adw App screenshot dark adw In this app, we will have a counter which can be incremented and decremented by pressing the corresponding buttons. The app we will write in this chapter is also available here . Run cargo run --example simple_manual from the example directory if you want to see the code in action.","breadcrumbs":"Your first app » Your first app","id":"16","title":"Your first app"},"160":{"body":"The next thing the macro does is generating the SimpleComponent trait implementation block. The start of the implementation block is very similar to the implementation block we use in the macro. Most notably, the Root type is automatically inserted, as is the implementation of init_root. All attributes and comments you add to the widget macro before the impl block should be kept as well. impl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); type Widgets = AppWidgets; fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } } type Root = gtk::Window; fn init_root() -> Self::Root { let main_window = gtk::Window::default(); main_window } Initialization before the view_output entrypoint A large part of the code generated by the macro is dedicated to the initialization of the view. This code is \"expanded\" from the view_output!() entrypoint. First, let's find the code we wrote before the entry point: fn init( init: Self::Init, renamed_root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; let icon_name = rand::random::().then(|| \"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; Next, the macro initializes all widgets. Widgets defined by their type are initialized with their Default implementation. Any constructors or functions that are invoked manually are left unchanged in the output. let main_window = renamed_root.clone(); let _gtk_box_14 = gtk::Box::default(); let inc_button = gtk::Button::default(); let _gtk_button_0 = gtk::Button::default(); let _gtk_grid_2 = gtk::Grid::default(); let _gtk_label_1 = gtk::Label::default(); let _conditional_widget_3 = relm4::gtk::Stack::default(); _conditional_widget_3 .set_transition_type(relm4::gtk::StackTransitionType::SlideLeft); let _gtk_label_4 = gtk::Label::default(); let _gtk_label_5 = gtk::Label::default(); let _gtk_label_6 = gtk::Label::default(); let match_stack = relm4::gtk::Stack::default(); match_stack.set_transition_type(relm4::gtk::StackTransitionType::SlideRight); let _gtk_label_7 = gtk::Label::default(); let _gtk_label_8 = gtk::Label::default(); let _gtk_label_9 = gtk::Label::default(); let _gtk_label_builder_10 = gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(); let _gtk_label_new_11 = gtk::Label::new(Some(\"Constructors work!\")); let _gtk_label_12 = gtk::Label::default(); let _gtk_togglebutton_13 = gtk::ToggleButton::default(); let _gtk_window_15 = gtk::Window::default(); let my_label_name = gtk::Label::default(); Assigning properties Assigning properties looks pretty normal as well. In the middle we have an optional assignment that uses an if let statement to only assign properties that match Some(data). In the macro we marked this line with a ?. main_window.set_title(Some(\"Macro reference example\")); main_window.set_default_width(300); main_window.set_default_height(100); relm4::RelmContainerExt::container_add(&main_window, &_gtk_box_14); _gtk_box_14.set_orientation(gtk::Orientation::Vertical); _gtk_box_14.set_spacing(5); _gtk_box_14.set_margin_all(5); _gtk_box_14.append(&inc_button); inc_button.set_label(\"Increment\"); if let Some(__p_assign) = icon_name { inc_button.set_icon_name(__p_assign); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_button_0); _gtk_button_0.set_label(\"Decrement\"); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_grid_2); _gtk_grid_2.attach(&_gtk_label_1, 1, 1, 1, 1); _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_box_14.append(&_conditional_widget_3); _conditional_widget_3.add_named(&_gtk_label_4, Some(\"0\")); _gtk_label_4.set_label(\"Value is even\"); _conditional_widget_3.add_named(&_gtk_label_5, Some(\"1\")); _gtk_label_5.set_label(\"Value is dividable by 3\"); _conditional_widget_3.add_named(&_gtk_label_6, Some(\"2\")); _gtk_label_6.set_label(\"Value is odd\"); _gtk_box_14.append(&match_stack); match_stack.add_named(&_gtk_label_7, Some(\"0\")); _gtk_label_7.set_label(\"Value is smaller than 3\"); match_stack.add_named(&_gtk_label_8, Some(\"1\")); _gtk_label_8.set_label(\"Value is higher than 2\"); _gtk_box_14.append(&_gtk_label_9); Events Now the macro generates the code for connecting events. { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); inc_button .connect_clicked(move |_| { sender.input(AppMsg::Increment); }); } { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_button_0 .connect_clicked(move |_| { sender.input(AppMsg::Decrement); }); } let toggle_handler = { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_togglebutton_13 .connect_toggled(move |_| { sender.input(AppMsg::Increment); }) }; The code looks very similar to what we wrote in the macro. append: inc_button = >k::Button { set_label: \"Increment\", // Only set this if `icon_name` is Some set_icon_name?: icon_name, connect_clicked[sender] => move |_| { sender.input(AppMsg::Increment); } }, gtk::Button { set_label: \"Decrement\", connect_clicked[sender] => move |_| { sender.input(AppMsg::Decrement); } }, Most notably, the sender we put in the square brackets is cloned as we requested. Initialization after the view_output entrypoint At the end we find the construction of the widgets struct and the construction of the ComponentParts, which was after the view_output! entrypoint. let widgets = Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label: local_ref_label.clone(), _gtk_window_15, my_label_name, test_field, }; ComponentParts { model: counter, widgets, } UI updates The last step of the macro is to generate the update logic within the update_view function. Any code present in the pre_view and post_view \"functions\" will be expanded before or after the generated code. Note that the generated code returns a private struct to prevent early returns in pre_view from skipping the rest of the view update code. /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, sender: ComponentSender) { struct __DoNotReturnManually; let _no_manual_return: __DoNotReturnManually = (move || { #[allow(unused_variables)] let Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label, _gtk_window_15, my_label_name, test_field, } = widgets; #[allow(unused_variables)] let counter = self; if (counter.value % 10 == 0) { _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); } let __current_page = _conditional_widget_3 .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = match_stack .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); match_stack .set_visible_child_name( match counter.value { (0..=2) => { let __page_active: bool = (__current_page == \"0\"); \"0\" } _ => { let __page_active: bool = (__current_page == \"1\"); \"1\" } }, ); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_window_15.set_visible(counter.value == 42); (move || {})(); __DoNotReturnManually })(); } Generated UI updates Within the generated update logic, the macro generates its own code to support more efficient updates. Updates from the #[watch] attribute are unconditional. _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); Updates from expressions annotated with #[track] are conditional based on whether the value changed, or based on if an expression is a certain value. if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, );","breadcrumbs":"Component macro reference » Macro expansion » The SimpleComponent trait implementation","id":"160","title":"The SimpleComponent trait implementation"},"161":{"body":"Congrats for making it this far 🎉! You're now a real expert of Relm4! As you have seen, the macro is nothing magical. It simply works with the information you give it.","breadcrumbs":"Component macro reference » Macro expansion » Conclusion","id":"161","title":"Conclusion"},"162":{"body":"If you want to look at the whole macro expansion at once, here it is. #![feature(prelude_import)]\n//! This example is a modified version of the `macro_reference` example in the [main Relm4\n//! repository][Relm4 repo].\n//!\n//! [Relm4 repo]: https://github.com/Relm4/Relm4/blob/main/examples/macro_reference.rs\n#[prelude_import]\nuse std::prelude::rust_2021::*;\n#[macro_use]\nextern crate std;\nuse gtk::prelude::{ BoxExt, ButtonExt, GridExt, GtkWindowExt, OrientableExt, ToggleButtonExt, WidgetExt,\n};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, SimpleComponent, WidgetPlus};\nstruct AppModel { value: u8, tracker: u8,\n}\nimpl AppModel { #[allow(dead_code, non_snake_case)] /// Get an immutable reference to this field. fn get_value(&self) -> &u8 { &self.value } #[allow(dead_code, non_snake_case)] /// Get a mutable reference to this field. Marks the field as changed. fn get_mut_value(&mut self) -> &mut u8 { self.tracker |= Self::value(); &mut self.value } #[allow(dead_code, non_snake_case)] /// Use a closure to update this field. Marks the field as changed. fn update_value(&mut self, f: F) { self.tracker |= Self::value(); f(&mut self.value); } #[allow(dead_code, non_snake_case)] /// Get bit mask to look for changes on this field. fn value() -> u8 { 1 << 0usize } #[allow(dead_code, non_snake_case)] /// Setter method. Will mark field as changed. fn set_value(&mut self, value: u8) { if self.value != value { self.tracker |= Self::value(); } self.value = value; } #[allow(dead_code)] /// Use this to check whether any changes made to this struct. fn track_all() -> u8 { u8::MAX } #[allow(dead_code)] /// Use this to mark all fields of the struct as changed. fn mark_all_changed(&mut self) { self.tracker = u8::MAX; } /// Check for changes made to this struct. fn changed(&self, mask: u8) -> bool { self.tracker & mask != 0 } /// Resets the tracker of this struct. fn reset(&mut self) { self.tracker = 0; }\n}\nenum AppMsg { Increment, Decrement,\n}\n#[automatically_derived]\nimpl ::core::fmt::Debug for AppMsg { fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { match self { AppMsg::Increment => ::core::fmt::Formatter::write_str(f, \"Increment\"), AppMsg::Decrement => ::core::fmt::Formatter::write_str(f, \"Decrement\"), } }\n}\nstruct AppInit { counter: u8,\n}\n#[allow(dead_code)]\nstruct AppWidgets { #[allow(missing_docs)] main_window: gtk::Window, #[allow(missing_docs)] _gtk_box_14: gtk::Box, #[allow(missing_docs)] inc_button: gtk::Button, #[allow(missing_docs)] _gtk_button_0: gtk::Button, #[allow(missing_docs)] _gtk_grid_2: gtk::Grid, #[allow(missing_docs)] _gtk_label_1: gtk::Label, #[allow(missing_docs)] _conditional_widget_3: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_4: gtk::Label, #[allow(missing_docs)] _gtk_label_5: gtk::Label, #[allow(missing_docs)] _gtk_label_6: gtk::Label, #[allow(missing_docs)] match_stack: relm4::gtk::Stack, #[allow(missing_docs)] _gtk_label_7: gtk::Label, #[allow(missing_docs)] _gtk_label_8: gtk::Label, #[allow(missing_docs)] _gtk_label_9: gtk::Label, #[allow(missing_docs)] _gtk_label_builder_10: gtk::Label, #[allow(missing_docs)] _gtk_label_new_11: gtk::Label, /// Counter label _gtk_label_12: gtk::Label, #[allow(missing_docs)] _gtk_togglebutton_13: gtk::ToggleButton, #[allow(missing_docs)] toggle_handler: relm4::gtk::glib::signal::SignalHandlerId, #[allow(missing_docs)] local_label: gtk::Label, #[allow(missing_docs)] local_ref_label: gtk::Label, #[allow(missing_docs)] _gtk_window_15: gtk::Window, #[allow(missing_docs)] my_label_name: gtk::Label, test_field: u8,\n}\n#[automatically_derived]\n#[allow(dead_code)]\nimpl ::core::fmt::Debug for AppWidgets { fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result { let names: &'static _ = &[ \"main_window\", \"_gtk_box_14\", \"inc_button\", \"_gtk_button_0\", \"_gtk_grid_2\", \"_gtk_label_1\", \"_conditional_widget_3\", \"_gtk_label_4\", \"_gtk_label_5\", \"_gtk_label_6\", \"match_stack\", \"_gtk_label_7\", \"_gtk_label_8\", \"_gtk_label_9\", \"_gtk_label_builder_10\", \"_gtk_label_new_11\", \"_gtk_label_12\", \"_gtk_togglebutton_13\", \"toggle_handler\", \"local_label\", \"local_ref_label\", \"_gtk_window_15\", \"my_label_name\", \"test_field\", ]; let values: &[&dyn ::core::fmt::Debug] = &[ &&self.main_window, &&self._gtk_box_14, &&self.inc_button, &&self._gtk_button_0, &&self._gtk_grid_2, &&self._gtk_label_1, &&self._conditional_widget_3, &&self._gtk_label_4, &&self._gtk_label_5, &&self._gtk_label_6, &&self.match_stack, &&self._gtk_label_7, &&self._gtk_label_8, &&self._gtk_label_9, &&self._gtk_label_builder_10, &&self._gtk_label_new_11, &&self._gtk_label_12, &&self._gtk_togglebutton_13, &&self.toggle_handler, &&self.local_label, &&self.local_ref_label, &&self._gtk_window_15, &&self.my_label_name, &&self.test_field, ]; ::core::fmt::Formatter::debug_struct_fields_finish( f, \"AppWidgets\", names, values, ) }\n}\nimpl SimpleComponent for AppModel { type Init = AppInit; type Input = AppMsg; type Output = (); type Widgets = AppWidgets; fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { self.reset(); match msg { AppMsg::Increment => { self.set_value(self.value.wrapping_add(1)); } AppMsg::Decrement => { self.set_value(self.value.wrapping_sub(1)); } } } type Root = gtk::Window; fn init_root() -> Self::Root { let main_window = gtk::Window::default(); main_window } /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, sender: ComponentSender) { struct __DoNotReturnManually; let _no_manual_return: __DoNotReturnManually = (move || { #[allow(unused_variables)] let Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label, _gtk_window_15, my_label_name, test_field, } = widgets; #[allow(unused_variables)] let counter = self; if (counter.value % 10 == 0) { _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); } let __current_page = _conditional_widget_3 .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = match_stack .visible_child_name() .map_or(\"\".to_string(), |s| s.as_str().to_string()); match_stack .set_visible_child_name( match counter.value { (0..=2) => { let __page_active: bool = (__current_page == \"0\"); \"0\" } _ => { let __page_active: bool = (__current_page == \"1\"); \"1\" } }, ); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); if (counter.changed(Self::value())) { _gtk_label_12.set_margin_all(counter.value.into()); } { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_window_15.set_visible(counter.value == 42); (move || {})(); __DoNotReturnManually })(); } fn init( init: Self::Init, renamed_root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counter = AppModel { value: init.counter, tracker: 0, }; let test_field = 0; let icon_name = rand::random::().then(|| \"go-up-symbolic\"); let local_label = gtk::Label::new(Some(\"local_label\")); let local_ref_label_value = gtk::Label::new(Some(\"local_ref_label\")); let local_ref_label = &local_ref_label_value; let main_window = renamed_root.clone(); let _gtk_box_14 = gtk::Box::default(); let inc_button = gtk::Button::default(); let _gtk_button_0 = gtk::Button::default(); let _gtk_grid_2 = gtk::Grid::default(); let _gtk_label_1 = gtk::Label::default(); let _conditional_widget_3 = relm4::gtk::Stack::default(); _conditional_widget_3 .set_transition_type(relm4::gtk::StackTransitionType::SlideLeft); let _gtk_label_4 = gtk::Label::default(); let _gtk_label_5 = gtk::Label::default(); let _gtk_label_6 = gtk::Label::default(); let match_stack = relm4::gtk::Stack::default(); match_stack.set_transition_type(relm4::gtk::StackTransitionType::SlideRight); let _gtk_label_7 = gtk::Label::default(); let _gtk_label_8 = gtk::Label::default(); let _gtk_label_9 = gtk::Label::default(); let _gtk_label_builder_10 = gtk::Label::builder() .label(\"Builder pattern works!\") .selectable(true) .build(); let _gtk_label_new_11 = gtk::Label::new(Some(\"Constructors work!\")); let _gtk_label_12 = gtk::Label::default(); let _gtk_togglebutton_13 = gtk::ToggleButton::default(); let _gtk_window_15 = gtk::Window::default(); let my_label_name = gtk::Label::default(); { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); inc_button .connect_clicked(move |_| { sender.input(AppMsg::Increment); }); } { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_button_0 .connect_clicked(move |_| { sender.input(AppMsg::Decrement); }); } let toggle_handler = { #[allow(clippy::redundant_clone)] #[allow(clippy::clone_on_copy)] let sender = sender.clone(); _gtk_togglebutton_13 .connect_toggled(move |_| { sender.input(AppMsg::Increment); }) }; {} main_window.set_title(Some(\"Macro reference example\")); main_window.set_default_width(300); main_window.set_default_height(100); relm4::RelmContainerExt::container_add(&main_window, &_gtk_box_14); _gtk_box_14.set_orientation(gtk::Orientation::Vertical); _gtk_box_14.set_spacing(5); _gtk_box_14.set_margin_all(5); _gtk_box_14.append(&inc_button); inc_button.set_label(\"Increment\"); if let Some(__p_assign) = icon_name { inc_button.set_icon_name(__p_assign); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_button_0); _gtk_button_0.set_label(\"Decrement\"); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_grid_2); _gtk_grid_2.attach(&_gtk_label_1, 1, 1, 1, 1); _gtk_label_1 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Grid works! (\", \")\"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_box_14.append(&_conditional_widget_3); _conditional_widget_3.add_named(&_gtk_label_4, Some(\"0\")); _gtk_label_4.set_label(\"Value is even\"); _conditional_widget_3.add_named(&_gtk_label_5, Some(\"1\")); _gtk_label_5.set_label(\"Value is dividable by 3\"); _conditional_widget_3.add_named(&_gtk_label_6, Some(\"2\")); _gtk_label_6.set_label(\"Value is odd\"); _gtk_box_14.append(&match_stack); match_stack.add_named(&_gtk_label_7, Some(\"0\")); _gtk_label_7.set_label(\"Value is smaller than 3\"); match_stack.add_named(&_gtk_label_8, Some(\"1\")); _gtk_label_8.set_label(\"Value is higher than 2\"); _gtk_box_14.append(&_gtk_label_9); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_builder_10); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_new_11); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_label_12); _gtk_label_12 .set_label( &{ let res = ::alloc::fmt::format( ::core::fmt::Arguments::new_v1( &[\"Counter: \"], &[::core::fmt::ArgumentV1::new_display(&counter.value)], ), ); res }, ); _gtk_label_12.set_margin_all(counter.value.into()); relm4::RelmContainerExt::container_add(&_gtk_box_14, &_gtk_togglebutton_13); _gtk_togglebutton_13.set_label(\"Counter is even\"); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::block_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } _gtk_togglebutton_13.set_active(counter.value % 2 == 0); { use relm4::WidgetRef; #[allow(clippy::needless_borrow)] relm4::gtk::prelude::ObjectExt::unblock_signal( _gtk_togglebutton_13.widget_ref(), &toggle_handler, ); } relm4::RelmContainerExt::container_add(&_gtk_box_14, &local_label); local_label.set_opacity(0.7); relm4::RelmContainerExt::container_add(&_gtk_box_14, &local_ref_label); local_ref_label.set_opacity(0.7); local_ref_label.set_size_request(40, 40); let __current_page = \"\"; _conditional_widget_3 .set_visible_child_name( if counter.value % 2 == 0 { let __page_active: bool = (__current_page == \"0\"); \"0\" } else if counter.value % 3 == 0 { let __page_active: bool = (__current_page == \"1\"); \"1\" } else { let __page_active: bool = (__current_page == \"2\"); \"2\" }, ); let __current_page = \"\"; match_stack .set_visible_child_name( match counter.value { (0..=2) => \"0\", _ => \"1\", }, ); _gtk_window_15.set_title(Some(\"Another window\")); _gtk_window_15.set_default_width(300); _gtk_window_15.set_default_height(100); _gtk_window_15.set_transient_for(Some(&main_window)); _gtk_window_15.hide(); _gtk_window_15.set_visible(counter.value == 42); relm4::RelmContainerExt::container_add(&_gtk_window_15, &my_label_name); my_label_name.set_label(\"You made it to 42!\"); let widgets = Self::Widgets { main_window, _gtk_box_14, inc_button, _gtk_button_0, _gtk_grid_2, _gtk_label_1, _conditional_widget_3, _gtk_label_4, _gtk_label_5, _gtk_label_6, match_stack, _gtk_label_7, _gtk_label_8, _gtk_label_9, _gtk_label_builder_10, _gtk_label_new_11, _gtk_label_12, _gtk_togglebutton_13, toggle_handler, local_label, local_ref_label: local_ref_label.clone(), _gtk_window_15, my_label_name, test_field, }; ComponentParts { model: counter, widgets, } }\n}","breadcrumbs":"Component macro reference » Macro expansion » The whole macro expansion","id":"162","title":"The whole macro expansion"},"163":{"body":"The sections of this chapter will help you to migrate your code from an older to newer version of Relm4.","breadcrumbs":"Migration guides » Migration guides","id":"163","title":"Migration guides"},"164":{"body":"Fortunately, there aren't many big breaking changes in version 0.4 despite a lot of improvements under the hood. In case you're wondering what happened to version 0.3, Relm4 now tries to follow the version number of gtk4-rs and therefore skipped v0.3.","breadcrumbs":"Migration guides » 0.2 to 0.4 » Migration from v0.2 to v0.4","id":"164","title":"Migration from v0.2 to v0.4"},"165":{"body":"The methods of FactoryPrototype were renamed to better match the rest of Relm4's traits. generate => init_view update => view get_root => root_widget","breadcrumbs":"Migration guides » 0.2 to 0.4 » FactoryPrototype","id":"165","title":"FactoryPrototype"},"166":{"body":"manual_view was renamed to post_view and pre_view was added to run code before the macro generated code in the view function. component! was removed, components are now accessible without extra code. parent! was added to access the parent widgets which previously required no extra code.","breadcrumbs":"Migration guides » 0.2 to 0.4 » widget macro","id":"166","title":"widget macro"},"167":{"body":"The Components trait now has a new method called connect_parent. This method doesn't do much more than passing the parent widgets down to individual components and originated unintentionally in the rework of the initialization process. Because this method is usually just repetitive code, you can now use the derive macro instead: #[derive(relm4::Components)]\nstruct AppComponents { header: RelmComponent, dialog: RelmComponent,\n} The derive macro will always use RelmWorker::with_new_thread() for workers. Also, RelmComponent::with_new_thread() was removed due to the restructuring. It's recommended to use workers or message handlers for blocking operations instead. If there's anything missing, let me know. You can simply open an issue on GitHub or write a message in the Matrix room .","breadcrumbs":"Migration guides » 0.2 to 0.4 » Components","id":"167","title":"Components"},"168":{"body":"Version 0.5 brings many exciting changes but also a few major breaking changes. In this chapter, all changes should be covered to help you migrating your existing code quickly.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Migration from v0.4 to v0.5","id":"168","title":"Migration from v0.4 to v0.5"},"169":{"body":"Component unifies several traits that existed before. It entirely replaces AppUpdate, ComponentUpdate, AsyncComponentUpdate, MessageHandler, MicroModel, MicroWidgets, Components and Widgets. Components are now more similar to MicroComponent which means they are much more flexible and don't need a typed connection to their parent component. This makes using the same component with different parent components much easier. Instead of accessing the parent model, you define Init as a type that includes all information to initialize the component. The life cycle has changed a bit, too. Initialization of the root widget . The reason behind this is to allow parent components to access the root widget before the rest of the component is initialized. Initialize the component itself and the widgets . This happens in one method now, which makes it easier especially for more difficult initializations. Regarding updates, there hasn't been a lot of changes. However you can now optionally update view and model at once using update_with_view . The shutdown method is called when the component is destroyed. Components don't have to live for the entire application lifespan anymore.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Components","id":"169","title":"Components"},"17":{"body":"Often, programming concepts are easier to understand when explained with examples or metaphors from the real world. To understand how Relm4 apps work, you can think about a computer as a person. Our job as a programmer is to ensure that the users of our app will be able to communicate with the computer through the UI. Since the computer can't understand our human language, it needs some help from us to get the communication going. Let's have a look at what we need to get this done!","breadcrumbs":"Your first app » Application architecture","id":"17","title":"Application architecture"},"170":{"body":"Components have three kinds of messages now: Input is the regular Msg type from the Model trait in 0.4. Output is the message type, that can be used to forward information to other components automatically (or () if you don't care about forwarding). You will find more information about initializing components in the next section. CmdOutput is the output of commands. Commands are futures that are executed in the background. They fully replace async workers. The result of this future is the CmdOutput message handled in update_cmd , similar to the regular update function. The send! macro is obsolete. Please use sender.input(msg) instead.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Senders and messages","id":"170","title":"Senders and messages"},"171":{"body":"Components are initialized in the init method of their parent. You simply call MyComponentType::builder() to get a ComponentBuilder . Then you launch the component by calling builder.launch(init_params) to receive a Connector . From the connector you can decide to automatically forward messages to another component or just detach the connector to get a Controller . The controller is the type you now store in the model of the parent component instead of creating a separate components struct. There's no Components trait necessary. For types that implement Component that don't have any widgets (such as implementers of the Worker trait), you can call detach_worker from a ComponentBuilder. This spawns the internal runtime on a separate thread and gives you a WorkerController .","breadcrumbs":"Migration guides » 0.4 to 0.5 » Initializing components","id":"171","title":"Initializing components"},"172":{"body":"SimpleComponent SimpleComponent is a simpler variant of Component that helps with the implementation of Component. Particularly, it doesn't support commands. Worker Worker is an even simpler variant of SimpleComponent that helps with the implementation of Component. Particularly, it doesn't support widgets and allows running the components update loop on a different thread by using detach_worker . This is the replacement for the previously separated RelmWorker type.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Helper traits","id":"172","title":"Helper traits"},"173":{"body":"Factories now work very similar to components. In fact, the new FactoryComponent trait that replaces FactoryPrototype is almost identical to the Component trait. Messages can now be optionally passed by using the forward_to_parent method. FactoryVec was entirely removed in favor of FactoryVecDeque. Edits to factories are now similar to Mutex and require a guard. When the guard is dropped, all changes are rendered automatically, so no render method is required anymore.","breadcrumbs":"Migration guides » 0.4 to 0.5 » Factories","id":"173","title":"Factories"},"174":{"body":"In general, a lot of internal macros were moved to be just attributes like watch! and track! now written as #[watch] and #[track(optional_condition)]. Multiple arguments now don't need args!() but just () whereas tuples need two parenthesis (()). Wrapping widgets into Some is now also an attribute #[wrap(Some)]. Additional arguments are now passed with square brackets [] instead of parenthesis (). Cloning variables for closures is always done with square brackets [] instead of parenthesis (). Old New view! { gtk::HeaderBar { set_title_widget = Some(>k::Box) { append: group = >k::ToggleButton { set_label: watch!(model.label), connect_toggled(sender) => move |btn| { // ... }, }, } }\n} view! { gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { append: group = >k::ToggleButton { #[watch] set_label: model.label, connect_toggled[sender] => move |btn| { // ... }, }, } }\n}","breadcrumbs":"Migration guides » 0.4 to 0.5 » The view macro","id":"174","title":"The view macro"},"175":{"body":"The macro in now called #[component]. You need to use let widgets = view_output!(); in the init function to inject the code from the view macro. pre_init -> Code before view_output!(). post_init -> Code after view_output!().","breadcrumbs":"Migration guides » 0.4 to 0.5 » The widget macro","id":"175","title":"The widget macro"},"176":{"body":"Now you need to specify an application id and a generic parameter is required when calling run().","breadcrumbs":"Migration guides » 0.4 to 0.5 » RelmApp","id":"176","title":"RelmApp"},"177":{"body":"WidgetPlus::inline_css now takes &str as parameter instead of &[u8].","breadcrumbs":"Migration guides » 0.4 to 0.5 » Miscellaneous","id":"177","title":"Miscellaneous"},"178":{"body":"v0.4 v0.5 Model Component AppUpdate Component ComponentUpdate Component AsyncComponentUpdate Component MicroComponent Component MicroWidgets Component MessageHandler Component FactoryPrototype FactoryComponent Model::Msg Component::Input Model::Widgets Component::Widgets Model::Components removed Components Store a Controller for each component in your model parent_sender Forward output messages from one component to another by using Connector In case there's something missing, please let me know. You can simply open an issue on GitHub or write a message in the Matrix room .","breadcrumbs":"Migration guides » 0.4 to 0.5 » Summary","id":"178","title":"Summary"},"179":{"body":"","breadcrumbs":"Migration guides » 0.5 to 0.6 » Migration from v0.5 to v0.6","id":"179","title":"Migration from v0.5 to v0.6"},"18":{"body":"For our app, we just want to tell the computer to either increment or decrement a counter. enum AppMsg { Increment, Decrement,\n}","breadcrumbs":"Your first app » Messages","id":"18","title":"Messages"},"180":{"body":"FactoryComponent::output_to_parent_input() => FactoryComponent::forward_to_parent()","breadcrumbs":"Migration guides » 0.5 to 0.6 » Renamed methods","id":"180","title":"Renamed methods"},"181":{"body":"RelmActionGroup::add_action() now consumes the action Use RelmActionGroup::register_for_widget() and RelmActionGroup::register_for_main_application() instead of WidgetExt::insert_action_group()","breadcrumbs":"Migration guides » 0.5 to 0.6 » Actions","id":"181","title":"Actions"},"182":{"body":"","breadcrumbs":"Migration guides » 0.6 to 0.7 » Migration from v0.6 to v0.7","id":"182","title":"Migration from v0.6 to v0.7"},"183":{"body":"Switching between the Component and AsyncComponent traits has been a bit unpleasant in previous versions due to complex errors generated by the code generated by async-trait. To avoid this, the signatures of Component and AsyncComponent were unified. This means, that Component::init() and SimpleComponent::init() now take Self::Root as owned parameter instead of a reference (&Self::Root). In most places, this just means that you have to remove a &.","breadcrumbs":"Migration guides » 0.6 to 0.7 » Component changes","id":"183","title":"Component changes"},"184":{"body":"ParentInput and forward_to_parent() were removed from FactoryComponent and AsyncFactoryComponent. Instead, factories now support basically the same builder pattern as components.","breadcrumbs":"Migration guides » 0.6 to 0.7 » Factory changes","id":"184","title":"Factory changes"},"185":{"body":"Replace this: #[relm4::factory]\nimpl FactoryComponent for Counter { type ParentInput = AppMsg; fn forward_to_parent(output: Self::Output) -> Option { Some(match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }) } // ...\n} #[relm4::component]\nimpl SimpleComponent for App { // ... fn init( counter: Self::Init, root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::new(gtk::Box::default(), sender.input_sender()); // ... }\n} With this: #[relm4::component]\nimpl SimpleComponent for App { // ... fn init( counter: Self::Init, root: &Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); // ... }\n}","breadcrumbs":"Migration guides » 0.6 to 0.7 » Example","id":"185","title":"Example"},"186":{"body":"set_global_css and set_global_css_from_file are now methods of RelmApp to prevent calling them before initializing GTK The drawing module was moved into the new abstractions module","breadcrumbs":"Migration guides » 0.6 to 0.7 » Other changes","id":"186","title":"Other changes"},"187":{"body":"Since 0.8 was released at the same day as 0.7, there are not many changes. It is worth noting though, that the async-trait crate was removed in favor of regular async traits available since Rust 1.75. This means that all manual uses of #[async_trait] for AsyncComponent or similar traits have to be removed.","breadcrumbs":"Migration guides » 0.7 to 0.8 » Migration from v0.7 to v0.8","id":"187","title":"Migration from v0.7 to v0.8"},"19":{"body":"For our counter app, the computer only needs to remember the counter value, so an u8 is all we need. struct AppModel { counter: u8,\n}","breadcrumbs":"Your first app » The model","id":"19","title":"The model"},"2":{"body":"If you find a mistake or something unclear in Relm4 or this book, let us know! Simply open up an issue or start a discussion over at GitHub or chat with us on Matrix .","breadcrumbs":"Introduction » Issues and feedback","id":"2","title":"Issues and feedback"},"20":{"body":"GTK4 offers the computer widgets that allow it to take input and to respond. Widgets are simply parts of an UI like buttons, input fields or text areas. To be able to update the widgets in our program, we can put them all into a struct. For our application, we use a window with two buttons to increase and decrease the counter and a label to display the counter value. We also need a box as a container to house our buttons and label, since a window can only have one child. In our case, we will only update the label when we increment or decrement the counter, so we don't really need to store everything inside the struct. struct AppWidgets { label: gtk::Label,\n} Although, if you want to, you can.","breadcrumbs":"Your first app » The widgets","id":"20","title":"The widgets"},"21":{"body":"The last step we need is to tell the computer how to initialize and update the widgets. All that is left to do is to implement the SimpleComponent trait for your model, which tells the computer exactly how to visualize its memory. Let's do this step by step. First, we'll have a look at the beginning of the trait impl. impl SimpleComponent for AppModel { The first thing you need to do is to define some generic types necessary to make our component work. /// The type of the messages that this component can receive. type Input = AppMsg; /// The type of the messages that this component can send. type Output = (); /// The type of data with which this component will be initialized. type Init = u8; /// The root GTK widget that this component will create. type Root = gtk::Window; /// A data structure that contains the widgets that you will need to update. type Widgets = AppWidgets; The types defined in the trait tell our component how it should communicate with other components and what type of widgets should be produced. The Root type is the outermost widget of the app. Components can choose this type freely, but the main component must use a Window. Since the window widget is our root widget, we are going to create it in the init_root function. fn init_root() -> Self::Root { gtk::Window::builder() .title(\"Simple app\") .default_width(300) .default_height(100) .build() } Next up, we want to initialize our UI and the model. Don't worry about the amount of manual code you need for handling widgets. In the next chapter, we'll see how this can be done easier. All of these widgets will be created in the init function. We get our Root window and the Init variables to create our widgets with. /// Initialize the UI and model. fn init( counter: Self::Init, window: Self::Root, sender: ComponentSender, ) -> relm4::ComponentParts { let model = AppModel { counter }; let vbox = gtk::Box::builder() .orientation(gtk::Orientation::Vertical) .spacing(5) .build(); let inc_button = gtk::Button::with_label(\"Increment\"); let dec_button = gtk::Button::with_label(\"Decrement\"); let label = gtk::Label::new(Some(&format!(\"Counter: {}\", model.counter))); label.set_margin_all(5); window.set_child(Some(&vbox)); vbox.set_margin_all(5); vbox.append(&inc_button); vbox.append(&dec_button); vbox.append(&label); inc_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Increment); } )); dec_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Decrement); } )); let widgets = AppWidgets { label }; ComponentParts { model, widgets } } First, we initialize each of our widgets, mostly by using builder patterns. Then we connect the widgets so that GTK4 knows how they are related to each other. The buttons and the label are added as children of the box, and the box is added as the child of the window. Next, we connect the \"clicked\" event for both buttons and send a message from the closures to the computer. To do this, we only need to move a cloned sender into the closures and send the message. Now every time we click our buttons, a message will be sent to update our counter! Of course, the computer needs to do more than just remembering things, it also needs to process information. Here, both the model and message types come into play. The update function of the SimpleComponent trait tells the computer how to process messages and how to update its memory. fn update(&mut self, message: Self::Input, _sender: ComponentSender) { match message { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } } wrapping_add(1) and wrapping_sub(1) are like +1 and -1, but don't panic on overflows. We see that the update function receives a message and updates the model according to your instructions. Still our UI will not update when the counter is changed. To do this, we need to implement the update_view function that modifies the UI according to the changes in the model. /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, _sender: ComponentSender) { widgets .label .set_label(&format!(\"Counter: {}\", self.counter)); }","breadcrumbs":"Your first app » Implement a component with SimpleComponent.","id":"21","title":"Implement a component with SimpleComponent."},"22":{"body":"The last step is to run the app we just wrote. To do so, we just need to initialize our model and pass it into RelmApp::new(). fn main() { let app = RelmApp::new(\"relm4.test.simple_manual\"); app.run::(0);\n} 🎉 Congratulations! You just wrote your first app with Relm4! 🎉","breadcrumbs":"Your first app » Running the App","id":"22","title":"Running the App"},"23":{"body":"Let's summarize what we learned in this chapter. A Relm4 application has three important types: The model type that stores the application state, the memory of our app. The message type that describes which information can be sent to update the model. The widgets type that stores our widgets. Also, there are two important functions: update receives a message and updates the model accordingly. update_view receives the updated model and updates the widgets accordingly. The app does all those things in a loop. It waits for messages and once a message is received, it runs update and then view. relm update loop Relm4 separates the data and the UI. The UI never knows which message was sent, but can only read the model. This might seem like a limitation, but it helps you to create maintainable, stable and consistent applications.","breadcrumbs":"Your first app » Summary","id":"23","title":"Summary"},"24":{"body":"I hope this chapter made everything clear for you :) If you found a mistake or there was something unclear, please open an issue here . As you have seen, initializing the UI was by far the largest part of our app, with roughly one half of the total code. In the next chapter, we will have a look at the relm4-macros crate, which provides a macro that helps us reduce the amount of code we need to implement the Widgets trait. As you might have noticed, storing inc_button, dec_button and vbox in our widgets struct is not necessary because GTK will keep them alive automatically. Therefore, we can remove them from AppWidgets to avoid compiler warnings.","breadcrumbs":"Your first app » Conclusion","id":"24","title":"Conclusion"},"25":{"body":"Let's review our code in one piece to see how all these parts work together: use gtk::glib::clone;\nuse gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; struct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} struct AppWidgets { label: gtk::Label,\n} impl SimpleComponent for AppModel { /// The type of the messages that this component can receive. type Input = AppMsg; /// The type of the messages that this component can send. type Output = (); /// The type of data with which this component will be initialized. type Init = u8; /// The root GTK widget that this component will create. type Root = gtk::Window; /// A data structure that contains the widgets that you will need to update. type Widgets = AppWidgets; fn init_root() -> Self::Root { gtk::Window::builder() .title(\"Simple app\") .default_width(300) .default_height(100) .build() } /// Initialize the UI and model. fn init( counter: Self::Init, window: Self::Root, sender: ComponentSender, ) -> relm4::ComponentParts { let model = AppModel { counter }; let vbox = gtk::Box::builder() .orientation(gtk::Orientation::Vertical) .spacing(5) .build(); let inc_button = gtk::Button::with_label(\"Increment\"); let dec_button = gtk::Button::with_label(\"Decrement\"); let label = gtk::Label::new(Some(&format!(\"Counter: {}\", model.counter))); label.set_margin_all(5); window.set_child(Some(&vbox)); vbox.set_margin_all(5); vbox.append(&inc_button); vbox.append(&dec_button); vbox.append(&label); inc_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Increment); } )); dec_button.connect_clicked(clone!( #[strong] sender, move |_| { sender.input(Msg::Decrement); } )); let widgets = AppWidgets { label }; ComponentParts { model, widgets } } fn update(&mut self, message: Self::Input, _sender: ComponentSender) { match message { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } } /// Update the view to represent the updated model. fn update_view(&self, widgets: &mut Self::Widgets, _sender: ComponentSender) { widgets .label .set_label(&format!(\"Counter: {}\", self.counter)); }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple_manual\"); app.run::(0);\n}","breadcrumbs":"Your first app » The complete code","id":"25","title":"The complete code"},"26":{"body":"To simplify the implementation of the Component trait, let's use the relm4-macros crate! App screenshot dark The app will look and behave identically to our first app from the previous chapter. Only the implementation is different. The app we will write in this chapter is also available here . Run cargo run --example simple from the example directory if you want to see the code in action.","breadcrumbs":"The component macro » The component macro","id":"26","title":"The component macro"},"27":{"body":"The component macro will simplify creating the Widgets struct. The update code remains untouched, so we can reuse most of the code from the previous chapter. Let's have a look at how to define a component with the macro and go through the code step by step: #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => AppMsg::Increment }, gtk::Button::with_label(\"Decrement\") { connect_clicked => AppMsg::Decrement }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { counter }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} The associated types don't change. We still have to define the model, the input parameters, and the message types. However, the Widgets type is never explicitly defined in the code, but generated by the macro. And then... wait, where do we define the Root type? Actually, the macro knows that the outermost widget becomes automatically the root widget. Next up - the heart of the component macro - the nested view! macro. Here, we can easily define widgets and assign properties to them.","breadcrumbs":"The component macro » What's different","id":"27","title":"What's different"},"28":{"body":"As you see, we start with the gtk::Window which is our root. Then we open up brackets and assign properties to the window. There's not much magic here but actually set_title is a method provided by gtk4-rs. So technically, the macro creates code like this: window.set_title(Some(\"Simple app\"));","breadcrumbs":"The component macro » Properties","id":"28","title":"Properties"},"29":{"body":"We assign a child to the window by nesting another widget inside it. Widgets may be nested indefinitely: gtk::Box { Sometimes we want to use a constructor function to initialize our widgets. For the second button we used the gtk::Button::with_label function. This function returns a new button with the \"Decrement\" label already set, so we don't have to call set_label afterwards. gtk::Button::with_label(\"Decrement\") {","breadcrumbs":"The component macro » Widgets","id":"29","title":"Widgets"},"3":{"body":"All platforms supported by GTK4 are available for Relm4 as well: Linux Windows macOS","breadcrumbs":"Introduction » Platform support","id":"3","title":"Platform support"},"30":{"body":"To connect events, we use this general syntax: method_name[cloned_var1, cloned_var2, ...] => move |args, ...| { code... } Again, there's no magic. The macro will simply assign a closure to a method. Because closures often need to capture local variables that don't implement the Copy trait, we need to clone these variables. Therefore, we can list the variables we want to clone in the square brackets after the method name. For simple cases there's even a shorter syntax for just sending one input message that works with most event handlers. So instead of this: method_name[sender] => move |_| { sender.input(Msg); }, You can simply write this: method_name => Msg, This is what we used in this example: connect_clicked => AppMsg::Decrement","breadcrumbs":"The component macro » Events","id":"30","title":"Events"},"31":{"body":"The last special syntax of the component macro we'll cover here is the #[watch] attribute. It's just like the normal initialization except that it also updates the property in the view function. Without it, the counter label would never be updated. #[watch] set_label: &format!(\"Counter: {}\", model.counter), The full reference for the syntax of the widget macro can be found here .","breadcrumbs":"The component macro » UI updates","id":"31","title":"UI updates"},"32":{"body":"After we've defined our widgets, we need to construct them. This is done with the view_output! macro, which returns a fully-initialized instance of our Widgets struct. // Insert the macro code generation here let widgets = view_output!();","breadcrumbs":"The component macro » Constructing the Widgets","id":"32","title":"Constructing the Widgets"},"33":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; struct AppModel { counter: u8,\n} #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Simple app\"), set_default_width: 300, set_default_height: 100, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Increment\", connect_clicked => AppMsg::Increment }, gtk::Button::with_label(\"Decrement\") { connect_clicked => AppMsg::Decrement }, gtk::Label { #[watch] set_label: &format!(\"Counter: {}\", model.counter), set_margin_all: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { counter }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::Increment => { self.counter = self.counter.wrapping_add(1); } AppMsg::Decrement => { self.counter = self.counter.wrapping_sub(1); } } }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.run::(0);\n}","breadcrumbs":"The component macro » The complete code","id":"33","title":"The complete code"},"34":{"body":"This chapter comes quite early in the book because it is quite helpful for beginners, but is certainly also useful for more advanced users. It contains the most common tips and tricks you will need while using Relm4. In case you have a problem, you can simply return to this chapter and might find something helpful very quickly. We recommend to have at least a short look at this chapter, but there's no crucial information in here so you can already continue with the next chapter if you want.","breadcrumbs":"Tips and tricks » Tips and tricks","id":"34","title":"Tips and tricks"},"35":{"body":"Some features of the view macro are explained very late in the book and are easy to overlook. Here's a short summery of those features, which you might find useful. If you found something interesting, you can look for more details in the macro reference chapter . Initialization using a builder pattern Pass additional arguments Pass Some(widget) if and match statements to dynamically select visible widgets Use the return value of assignments Optional and iterative assignments","breadcrumbs":"Tips and tricks » Advanced view macro features","id":"35","title":"Advanced view macro features"},"36":{"body":"The Elm architecture itself is pretty simple, but as your application grows, small oversights can sometimes cause large problems.","breadcrumbs":"Tips and tricks » Common pitfalls","id":"36","title":"Common pitfalls"},"37":{"body":"Relm4 components use a simple update loop: Receive a message, update the model and then update the view. Usually, this works as intended, but if updating the view somehow creates a new, identical message, your code will be stuck in an infinite loop and your app will freeze. To prevent this, the view macro has the block_signal attribute which is explained here .","breadcrumbs":"Tips and tricks » Message recursion","id":"37","title":"Message recursion"},"38":{"body":"Sending messages in Relm4 can lead to panics under certain circumstances. The most common mistake is dropping a Controller. This will cause the entire runtime of the component to be dropped together with all it's receivers. Sending message to this component afterwards will not work because the receiving side is not available anymore. To avoid this problem, you can either store the Controller in the model of its parent components or call detach_runtime() . Also note that sending output messages will not work if you detach a component, again because this means that no receiver is available. In this case it might be desired to ignore sending errors.","breadcrumbs":"Tips and tricks » Sending errors","id":"38","title":"Sending errors"},"39":{"body":"Relm4's macros try to make your life easier, but sometimes the created error messages are rather confusing. This is not something that can be fully fixed in the macro itself due to the limitations of the Rust programming language, but we try to summarize some common errors in this section.","breadcrumbs":"Tips and tricks » Common compiler errors","id":"39","title":"Common compiler errors"},"4":{"body":"If you prefer learning directly from examples, we got you covered! Many code examples in this book and many other examples can also be found in the git-repository . Whenever an example is discussed in the book, the introduction will mention the name of the example and provide a link to it. To setup the examples run git clone https://github.com/Relm4/Relm4.git And to run an example, simply type cargo run --example NAME To get a list of all examples, run cargo run --example","breadcrumbs":"Introduction » Examples","id":"4","title":"Examples"},"40":{"body":"The #[component] and #[factory] macros will automatically generate a struct for storing your widgets. This struct must have the same visibility as the model because it is associated with the Component or FactoryComponent implementation of the model. To tell the macro to generate a public widgets type, you can simply use #[component(pub)] or #[factory(pub)].","breadcrumbs":"Tips and tricks » Private type in public interface","id":"40","title":"Private type in public interface"},"41":{"body":"Relm4 implements the ContainerExt trait for many widgets that allows you simply nest widgets in the view macro. gtk::Box { gtk::Label { // ... }\n} Unfortunately, this trait can't always be implemented because some widgets don't have a obvious method for adding children. For gtk::Box it is relatively simple and just uses the append() method internally. However, gtk::Header has three possible locations to add children: start, center and end. Implementing RelmContainerExt for such a type is not possible because it's not clear what the default behavior should be. Other types such as gtk::Grid even need more information to place children. In this case, you can simply pass the method name before declaring the child widget. Also, we often need a reference (&) because most methods in gtk-rs take references. gtk::HeaderBar { pack_start = >k::Label { // ... }\n},\ngtk::Grid { attach[0, 0, 1, 1] = >k::Label { // ... }\n}","breadcrumbs":"Tips and tricks » Method container_add is missing","id":"41","title":"Method container_add is missing"},"42":{"body":"The structure and design of most gtk-rs crates is often a bit different from most other Rust crates. Because GTK is based on GObject, a C library that implements object-oriented programming, the gtk-rs developers had to come up with some clever ideas to integrate the C code into Rust.","breadcrumbs":"Tips and tricks » Working with gtk-rs","id":"42","title":"Working with gtk-rs"},"43":{"body":"Looking at the documentation of gtk::Box makes it look like this type has just a new() and a builder() method. However, this is not quite true as the gtk::Box type comes with plenty of methods. To find those methods, you have to look at \"implements\" section , which contains a list of traits implemented by this type. In particular, BoxExt gives you a lot of useful methods. Another very important trait in the list is WidgetExt which is implemented by all widgets. In the same fashion, you can find the available methods of other widgets.","breadcrumbs":"Tips and tricks » Reading docs","id":"43","title":"Reading docs"},"44":{"body":"GTK has a built-in inspector that has similar features as browser developer tools. You can use them to look at individual widgets, modify their properties, apply custom CSS and much more. In particular, it is very useful for finding the best values before integrating them into your code. To use the inspector, you only need to press Ctrl+Shift+D while you have a GTK application opened (this not just works for Relm4, but all GTK based apps). You should see an overview over all your widgets, which you can expand row by row. Yet, to select widgets, it is more convenient to use the button in the top left which allows you to select a widget by clicking on your app. Once you have selected a widget, you can modify its properties. You can also use the CSS tab to apply custom CSS to your application. Once you entered your rules, make sure the pause button is not selected. For example, you could try setting a border for every widget: * { border: 1px solid red;\n} Widget overview Widget properties Widget overview Widget properties","breadcrumbs":"Tips and tricks » Using the inspector","id":"44","title":"Using the inspector"},"45":{"body":"Both GTK4, libadwaita and ASHPD (a library for portals) have demo applications. Those are very useful when searching for widgets and other features, especially when combined with the inspector. Setup gnome-nightly flatpak remote: flatpak remote-add --if-not-exists gnome-nightly https://nightly.gnome.org/gnome-nightly.flatpakrepo Install the GTK4 demo: flatpak install gnome-nightly org.gtk.Demo4 Install the Adwaita demo: flatpak install gnome-nightly org.gnome.Adwaita1.Demo Install the ASHPD demo: flatpak install flathub com.belmoussaoui.ashpd.demo","breadcrumbs":"Tips and tricks » Demo applications","id":"45","title":"Demo applications"},"46":{"body":"Relm4 also offers a few extra crates and projects to make your life easier: relm4-template : A template for flatpak apps that saves a lot of time for setting up new projects relm4-icons : Over 2000 icons, ready to use for your app relm4-components : A collection of handy components","breadcrumbs":"Tips and tricks » Our ecosystem","id":"46","title":"Our ecosystem"},"47":{"body":"In case you didn't find the answer to your question in this book, feel free to ask it in our matrix chat or in a GitHub discussion (you can find all links in our README ). We are always happy to help you! After all, this chapter was assembled from the most common questions we got from either GitHub or the matrix chat.","breadcrumbs":"Tips and tricks » Guaranteed helpful: Our matrix chat","id":"47","title":"Guaranteed helpful: Our matrix chat"},"48":{"body":"Relm4 follows the Elm programming model which means that data and widgets are separated. At first glance this might cause a problem. Larger applications need to efficiently update their widgets because rebuilding the whole UI for every update is not an option. But since data and widgets are separated, how do we know which UI elements need to be updated? Let's have a look at the following example: Imagine you have an app with 1000 counters and you only increment the first counter. The model receives the increment message for the first counter and increments it. Now the view function gets the updated model with 1000 counters and… well, has no idea what has changed! So instead of one UI update we need to do 1000 because we don't know which of our counters was modified. There are two concepts in Relm4 to avoid unnecessary UI updates: Trackers identify modifications of fields in structs to only trigger updates to the affected UI elements. Factories track changes in data structures similar to std::collections in order to perform also minimal UI updates. They are used to generate multiple similar widgets, e.g. a row of buttons, from a data collection. Both concepts are explained in the following chapters.","breadcrumbs":"Efficient UI updates » Efficient UI updates","id":"48","title":"Efficient UI updates"},"49":{"body":"A tracker in this context simply means a data type that's able to track changes to itself. For example, if we increment the counter of the model we used for our first app, the model might tell us later that the counter changed during the last update function. Relm4 does not promote any implementation of a tracker. You're free to use any implementation you like, you can even implement a tracker yourself. In this example however, we'll use the tracker crate that provides a simple macro that implements a tracker for us automatically. Using this technique, we will implement a small program which displays two randomly picked icons controlled by two buttons: App screenshot When pressing a button, the icon above it will change. The background of the application will become green when the two icons are identical: App screenshot with with equal icons","breadcrumbs":"Efficient UI updates » Tracker » Tracker","id":"49","title":"Tracker"},"5":{"body":"As a sneak peak here are screenshots of some examples. Light Theme Dark Theme Pop Over light Pop Over dark Factory-Advanced light Factory-Advanced dark","breadcrumbs":"Introduction » Screenshots","id":"5","title":"Screenshots"},"50":{"body":"The tracker::track macro implements the following methods for your struct fields: get_{field_name}() Get an immutable reference to your field. get_mut_{field_name}() Get a mutable reference to your field. Assumes the field will be modified and marks it as changed. set_{field_name}(value) Get a mutable reference to your field. Marks the field as changed only if the new value isn't equal with the previous value. update_{field_name}(fn) Update your mutable field with a function or a closure. Assumes the field will be modified and marks it as changed. To check for changes you can call {struct_var_name}.changed(StructName::{field_name}()) and it will return a bool indication whether the field was updated. To reset all previous changes, you can call {struct_var_name}.reset().","breadcrumbs":"Efficient UI updates » Tracker » The tracker crate","id":"50","title":"The tracker crate"},"51":{"body":"First we have to add the tracker library to Cargo.toml: tracker = \"0.2.2\" Now let's have a look at a small example. #[tracker::track]\nstruct Test { x: u8, y: u64,\n} fn main() { let mut t = Test { x: 0, y: 0, // the macro generates a new variable called // \"tracker\" which stores the changes tracker: 0, }; t.set_x(42); // let's check whether the change was detected assert!(t.changed(Test::x())); // reset t so we don't track old changes t.reset(); t.set_x(42); // same value, so no change assert!(!t.changed(Test::x()));\n} So in short, the tracker::track macro provides various getters and setters that will mark struct fields as changed. You also get a method that checks for changes and a method to reset the changes.","breadcrumbs":"Efficient UI updates » Tracker » A tracker example","id":"51","title":"A tracker example"},"52":{"body":"Let's build a simple app that shows two random icons and allows the user to set either of them to a new random icon. As a bonus, we want to show a fancy background color if both icons are the same. The app we will write in this chapter is also available here . Run cargo run --example tracker from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » Tracker » Using trackers in Relm4 apps","id":"52","title":"Using trackers in Relm4 apps"},"53":{"body":"Before we can select random icons, we need to quickly implement a function that will return us random image names available in the default GTK icon theme. const ICON_LIST: &[&str] = &[ \"bookmark-new-symbolic\", \"edit-copy-symbolic\", \"edit-cut-symbolic\", \"edit-find-symbolic\", \"starred-symbolic\", \"system-run-symbolic\", \"emoji-objects-symbolic\", \"emoji-nature-symbolic\", \"display-brightness-symbolic\",\n]; fn random_icon_name() -> &'static str { ICON_LIST .iter() .choose(&mut rand::thread_rng()) .expect(\"Could not choose a random icon\")\n}","breadcrumbs":"Efficient UI updates » Tracker » The icons","id":"53","title":"The icons"},"54":{"body":"For our model we only need to store the two icon names and whether both of them are identical. #[tracker::track]\nstruct AppModel { first_icon: &'static str, second_icon: &'static str, identical: bool,\n} The message type is also pretty simple: we just want to update one of the icons. #[derive(Debug)]\nenum AppInput { UpdateFirst, UpdateSecond,\n} There are a few notable things for the Component's update implementation. First, we call self.reset() at the top of the function body. This ensures that the tracker will be reset so we don't track old changes. Also, we use setters instead of assignments because we want to track these changes. Yet, you could still use the assignment operator if you want to apply changes without notifying the tracker. fn update(&mut self, message: Self::Input, _sender: ComponentSender) { // reset tracker value of the model self.reset(); match message { AppInput::UpdateFirst => { self.set_first_icon(random_icon_name()); } AppInput::UpdateSecond => { self.set_second_icon(random_icon_name()); } } self.set_identical(self.first_icon == self.second_icon); }","breadcrumbs":"Efficient UI updates » Tracker » The model","id":"54","title":"The model"},"55":{"body":"Now we reached the interesting part of the code where we can actually make use of the tracker. Let's have a look at the complete view! macro call: view! { #[root] gtk::ApplicationWindow { #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, set_margin_all: 10, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateFirst) } } }, append = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::second_icon())\"] set_icon_name: Some(model.second_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateSecond) } } }, } } }","breadcrumbs":"Efficient UI updates » Tracker » The view","id":"55","title":"The view"},"56":{"body":"In this example, we need some additional code in fn main() to add custom CSS that sets the background color for elements with class name \"identical\". Later, we just need to assign the \"identical\" class name to a widget to make it match the CSS selector. fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.set_global_css(\".identical { background: #00ad5c; }\"); app.run::(());\n}","breadcrumbs":"Efficient UI updates » Tracker » The main function","id":"56","title":"The main function"},"57":{"body":"The #[track] attribute is applied to method invocations in our view code. It allows us to add a condition to the update: if the condition is true, the method will be called, otherwise, it will be skipped. The attribute syntax looks like this: #[track = \"\"] Let's have a look at its first appearance: #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), The set_class_active method is used to either activate or disable a CSS class. It takes two parameters, the first is the class itself and the second is a boolean which specifies if the class should be added (true) or removed (false). The value of the #[track] attribute is parsed as a boolean expression. This expression will be used as a condition to check whether something has changed. If this condition is true, the set_class_active method will be called with the parameters it guards. The macro expansion for method calls annotated with the #[track] attribute look roughly like this: if model.changed(AppModel::identical()) { self.main_window.set_class_active(\"identical\", model.identical);\n} That's all. It's pretty simple, actually. We just use a condition that allows us to update our widgets only when needed. The second #[track] attribute works similarly: #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), Using a tracker as debugging helper Since the #[track] attribute parses expressions, you can use the following syntax to debug your trackers: #[track = \"{ println!(\"Update widget\"); argument }\"]","breadcrumbs":"Efficient UI updates » Tracker » The #[track] attribute","id":"57","title":"The #[track] attribute"},"58":{"body":"There's one last thing to point out. When initializing our model, we need to initialize the tracker field as well. The initial value doesn't really matter because we call reset() in the update function anyway, but usually 0 is used. let model = AppModel { first_icon: random_icon_name(), second_icon: random_icon_name(), identical: false, tracker: 0, };","breadcrumbs":"Efficient UI updates » Tracker » Initializing the model","id":"58","title":"Initializing the model"},"59":{"body":"Let's look at our code again in one piece to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, OrientableExt};\nuse rand::prelude::IteratorRandom;\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; const ICON_LIST: &[&str] = &[ \"bookmark-new-symbolic\", \"edit-copy-symbolic\", \"edit-cut-symbolic\", \"edit-find-symbolic\", \"starred-symbolic\", \"system-run-symbolic\", \"emoji-objects-symbolic\", \"emoji-nature-symbolic\", \"display-brightness-symbolic\",\n]; fn random_icon_name() -> &'static str { ICON_LIST .iter() .choose(&mut rand::thread_rng()) .expect(\"Could not choose a random icon\")\n} // The track proc macro allows to easily track changes to different\n// fields of the model\n#[tracker::track]\nstruct AppModel { first_icon: &'static str, second_icon: &'static str, identical: bool,\n} #[derive(Debug)]\nenum AppInput { UpdateFirst, UpdateSecond,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = (); type Input = AppInput; type Output = (); view! { #[root] gtk::ApplicationWindow { #[track = \"model.changed(AppModel::identical())\"] set_class_active: (\"identical\", model.identical), gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, set_margin_all: 10, gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::first_icon())\"] set_icon_name: Some(model.first_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateFirst) } } }, append = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 10, gtk::Image { set_pixel_size: 50, #[track = \"model.changed(AppModel::second_icon())\"] set_icon_name: Some(model.second_icon), }, gtk::Button { set_label: \"New random image\", connect_clicked[sender] => move |_| { sender.input(AppInput::UpdateSecond) } } }, } } } // Initialize the UI. fn init( _params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = AppModel { first_icon: random_icon_name(), second_icon: random_icon_name(), identical: false, tracker: 0, }; // Insert the macro code generation here let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, message: Self::Input, _sender: ComponentSender) { // reset tracker value of the model self.reset(); match message { AppInput::UpdateFirst => { self.set_first_icon(random_icon_name()); } AppInput::UpdateSecond => { self.set_second_icon(random_icon_name()); } } self.set_identical(self.first_icon == self.second_icon); }\n} fn main() { let app = RelmApp::new(\"relm4.test.simple\"); app.set_global_css(\".identical { background: #00ad5c; }\"); app.run::(());\n}","breadcrumbs":"Efficient UI updates » Tracker » The complete code","id":"59","title":"The complete code"},"6":{"body":"We want to thank all contributors of relm especially antoyo for building relm that inspired much of the work on Relm4. Also, we want to thank all contributors of gtk-rs that put a lot of effort into the project for creating outstanding Rust bindings for GTK4. We want to thank tronta , Eduardo Flores , Andy Russell , Aaron Erhardt for contributing a lot of improvements to this book.","breadcrumbs":"Introduction » Special thanks","id":"6","title":"Special thanks"},"60":{"body":"Factories define how to generate widgets from data collections. GTK also has factories, yet Relm4 uses its own factory implementation which is much easier to use in regular Rust code. App screenshot dark This app will have a dynamic number of counters. Also, the counters can be moved up and down by the user.","breadcrumbs":"Efficient UI updates » Factories » Factory","id":"60","title":"Factory"},"61":{"body":"Factories allow you to visualize data in a natural way. If you wanted to store a set of counter values in regular Rust code, you'd probably use Vec. However, you can't simply generate widgets from a Vec. This is where factories are really useful. Custom collection types like FactoryVecDeque allow you to work with collections of data almost as comfortable as if they were stored in a Vec. At the same time, factories allow you to automatically visualize the data with widgets. Additionally, factories are very efficient by reducing the amount of UI updates to a minimum. The app we will write in this chapter is also available here . Run cargo run --example factory from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » Factories » Factories in Relm4","id":"61","title":"Factories in Relm4"},"62":{"body":"First, we define the struct Counter that just stores the value of a single counter. Later, we will use a FactoryVecDeque to store our counters. #[derive(Debug)]\nstruct Counter { value: u8,\n}","breadcrumbs":"Efficient UI updates » Factories » The model","id":"62","title":"The model"},"63":{"body":"Each counter should be able to increment and decrement. #[derive(Debug)]\nenum CounterMsg { Increment, Decrement,\n}","breadcrumbs":"Efficient UI updates » Factories » The input message type","id":"63","title":"The input message type"},"64":{"body":"A neat feature of factories is that each element can easily forward their output messages to the input of their parent component. For example, this is necessary for modifications that require access to the whole FactoryVecDeque, like moving an element to a new position. Therefore, these actions are covered by the output type. The actions we want to perform \"from outside\" are Move a counter up Move a counter down Move a counter to the first position Accordingly, our message type looks like this: #[derive(Debug)]\nenum CounterOutput { SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} You might wonder why DynamicIndex is used here. First, the parent component needs to know which element should be moved, which is defined by the index. Further, elements can move in the FactoryVecDeque. If we used usize as index instead, it could happen that the index points to another element by the time it is processed.","breadcrumbs":"Efficient UI updates » Factories » The output message type","id":"64","title":"The output message type"},"65":{"body":"Factories use the FactoryComponent trait which is very similar to regular components with some minor adjustments. For example, FactoryComponent needs the #[relm4::factory] attribute macro and a few more associated types in the trait implementation. #[relm4::factory]\nimpl FactoryComponent for Counter { type Init = u8; type Input = CounterMsg; type Output = CounterOutput; type CommandOutput = (); type ParentWidget = gtk::Box; Let's look at the associated types one by one: Init : The data required to initialize Counter, in this case the initial counter value. Input : The input message type. Output : The output message type. CommandOutput : The command output message type, we don't need it here. ParentWidget : The container widget used to store the widgets of the factory, for example gtk::Box.","breadcrumbs":"Efficient UI updates » Factories » The factory implementation","id":"65","title":"The factory implementation"},"66":{"body":"The widget creation works as usual with our trusty view macro. The only difference is that we use self to refer to the model due to differences in the FactoryComponent trait. view! { #[root] gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, #[name(label)] gtk::Label { #[watch] set_label: &self.value.to_string(), set_width_chars: 3, }, #[name(add_button)] gtk::Button { set_label: \"+\", connect_clicked => CounterMsg::Increment, }, #[name(remove_button)] gtk::Button { set_label: \"-\", connect_clicked => CounterMsg::Decrement, }, #[name(move_up_button)] gtk::Button { set_label: \"Up\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveUp(index.clone())).unwrap(); } }, #[name(move_down_button)] gtk::Button { set_label: \"Down\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveDown(index.clone())).unwrap(); } }, #[name(to_front_button)] gtk::Button { set_label: \"To Start\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::SendFront(index.clone())).unwrap(); } } } }","breadcrumbs":"Efficient UI updates » Factories » Creating the widget","id":"66","title":"Creating the widget"},"67":{"body":"FactoryComponent has separate functions for initializing the model and the widgets. This means, that we are a bit less flexible, but don't need view_output!() here. Also, we just need to implement the init_model function because init_widgets is already implemented by the macro. fn init_model(value: Self::Init, _index: &DynamicIndex, _sender: FactorySender) -> Self { Self { value } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the model","id":"67","title":"Initializing the model"},"68":{"body":"Now, we have implemented the FactoryComponent type for the elements in our factory. The only thing left to do is to write our main component to complete our app.","breadcrumbs":"Efficient UI updates » Factories » The main component","id":"68","title":"The main component"},"69":{"body":"For the main component we implement the familiar SimpleComponent trait. First we define the model and the input message type and then start the trait implementation. struct App { created_widgets: u8, counters: FactoryVecDeque,\n} #[derive(Debug)]\nenum AppMsg { AddCounter, RemoveCounter, SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::component]\nimpl SimpleComponent for App { type Init = u8; type Input = AppMsg; type Output = ();","breadcrumbs":"Efficient UI updates » Factories » The component types","id":"69","title":"The component types"},"7":{"body":"Before we start building our app, we need to understand the basic concepts of Relm4. If you have experience with GTK and Rust, you will probably breeze through this section, but if you don't, this section is for you. We will explain in detail how Relm4 works and how to use it. After this section, we will be building a simple counter app.","breadcrumbs":"Basic concepts » Basic concepts","id":"7","title":"Basic concepts"},"70":{"body":"We skip the view macro for a moment and look at the init method. You see that we are initializing the FactoryVecDeque using a builder pattern. First, we call FactoryVecDeque::builder() to create the builder and use launch() to set the root widget of the factory. This widget will store all the widgets created by the factory. Then, we use the forward() method to pass all output messages of our factory (with type CounterOutput) to the input of our component (with type AppMsg). The last trick we have up our sleeves is to define a local variable counter_box that is a reference to the container widget of our factory. We'll use it in the view macro in the next section. // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); let model = App { created_widgets: counter, counters, }; let counter_box = model.counters.widget(); let widgets = view_output!(); ComponentParts { model, widgets } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the factory","id":"70","title":"Initializing the factory"},"71":{"body":"The familiar view macro comes into play again. Most things should look familiar, but this time we use a #[local_ref] attribute for the last widget to use the local variable we defined in the previous section. This trick allows us to initialize the model with its FactoryVecDeque before the widgets, which is more convenient in most cases. view! { gtk::Window { set_title: Some(\"Factory example\"), set_default_size: (300, 100), gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Add counter\", connect_clicked => AppMsg::AddCounter, }, gtk::Button { set_label: \"Remove counter\", connect_clicked => AppMsg::RemoveCounter, }, #[local_ref] counter_box -> gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, } } } }","breadcrumbs":"Efficient UI updates » Factories » Initializing the widgets","id":"71","title":"Initializing the widgets"},"72":{"body":"This time the main update function has actually quite a bit to do. The code should be quite readable if you worked with Vec or VecDeque before. One thing stands out though: We see a lot of calls to guard(). In fact, all mutating methods of FactoryVecDeque need an RAII-guard. This is similar to a MutexGuard you get from locking a mutex. The reason for this is simple. As long as the guard is alive, we can perform multiple operations. Once we're done, we just drop the guard (or rather leave the current scope) and this will cause the factory to update its widgets automatically. The neat thing: You can never forget to render changes, and the update algorithm can optimize widget updates for efficiency. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::AddCounter => { self.counters.guard().push_back(self.created_widgets); self.created_widgets = self.created_widgets.wrapping_add(1); } AppMsg::RemoveCounter => { self.counters.guard().pop_back(); } AppMsg::SendFront(index) => { self.counters.guard().move_front(index.current_index()); } AppMsg::MoveDown(index) => { let index = index.current_index(); let new_index = index + 1; // Already at the end? if new_index < self.counters.len() { self.counters.guard().move_to(index, new_index); } } AppMsg::MoveUp(index) => { let index = index.current_index(); // Already at the start? if index != 0 { self.counters.guard().move_to(index, index - 1); } } } }","breadcrumbs":"Efficient UI updates » Factories » The main update function","id":"72","title":"The main update function"},"73":{"body":"Awesome, we almost made it! We only need to define the main function to run our application. fn main() { let app = RelmApp::new(\"relm4.example.factory\"); app.run::(0);\n}","breadcrumbs":"Efficient UI updates » Factories » The main function","id":"73","title":"The main function"},"74":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{BoxExt, ButtonExt, GtkWindowExt, OrientableExt};\nuse relm4::factory::{DynamicIndex, FactoryComponent, FactorySender, FactoryVecDeque};\nuse relm4::{gtk, ComponentParts, ComponentSender, RelmApp, RelmWidgetExt, SimpleComponent}; #[derive(Debug)]\nstruct Counter { value: u8,\n} #[derive(Debug)]\nenum CounterMsg { Increment, Decrement,\n} #[derive(Debug)]\nenum CounterOutput { SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::factory]\nimpl FactoryComponent for Counter { type Init = u8; type Input = CounterMsg; type Output = CounterOutput; type CommandOutput = (); type ParentWidget = gtk::Box; view! { #[root] gtk::Box { set_orientation: gtk::Orientation::Horizontal, set_spacing: 10, #[name(label)] gtk::Label { #[watch] set_label: &self.value.to_string(), set_width_chars: 3, }, #[name(add_button)] gtk::Button { set_label: \"+\", connect_clicked => CounterMsg::Increment, }, #[name(remove_button)] gtk::Button { set_label: \"-\", connect_clicked => CounterMsg::Decrement, }, #[name(move_up_button)] gtk::Button { set_label: \"Up\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveUp(index.clone())).unwrap(); } }, #[name(move_down_button)] gtk::Button { set_label: \"Down\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::MoveDown(index.clone())).unwrap(); } }, #[name(to_front_button)] gtk::Button { set_label: \"To Start\", connect_clicked[sender, index] => move |_| { sender.output(CounterOutput::SendFront(index.clone())).unwrap(); } } } } fn init_model(value: Self::Init, _index: &DynamicIndex, _sender: FactorySender) -> Self { Self { value } } fn update(&mut self, msg: Self::Input, _sender: FactorySender) { match msg { CounterMsg::Increment => { self.value = self.value.wrapping_add(1); } CounterMsg::Decrement => { self.value = self.value.wrapping_sub(1); } } }\n} struct App { created_widgets: u8, counters: FactoryVecDeque,\n} #[derive(Debug)]\nenum AppMsg { AddCounter, RemoveCounter, SendFront(DynamicIndex), MoveUp(DynamicIndex), MoveDown(DynamicIndex),\n} #[relm4::component]\nimpl SimpleComponent for App { type Init = u8; type Input = AppMsg; type Output = (); view! { gtk::Window { set_title: Some(\"Factory example\"), set_default_size: (300, 100), gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, set_margin_all: 5, gtk::Button { set_label: \"Add counter\", connect_clicked => AppMsg::AddCounter, }, gtk::Button { set_label: \"Remove counter\", connect_clicked => AppMsg::RemoveCounter, }, #[local_ref] counter_box -> gtk::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 5, } } } } // Initialize the UI. fn init( counter: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let counters = FactoryVecDeque::builder() .launch(gtk::Box::default()) .forward(sender.input_sender(), |output| match output { CounterOutput::SendFront(index) => AppMsg::SendFront(index), CounterOutput::MoveUp(index) => AppMsg::MoveUp(index), CounterOutput::MoveDown(index) => AppMsg::MoveDown(index), }); let model = App { created_widgets: counter, counters, }; let counter_box = model.counters.widget(); let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::AddCounter => { self.counters.guard().push_back(self.created_widgets); self.created_widgets = self.created_widgets.wrapping_add(1); } AppMsg::RemoveCounter => { self.counters.guard().pop_back(); } AppMsg::SendFront(index) => { self.counters.guard().move_front(index.current_index()); } AppMsg::MoveDown(index) => { let index = index.current_index(); let new_index = index + 1; // Already at the end? if new_index < self.counters.len() { self.counters.guard().move_to(index, new_index); } } AppMsg::MoveUp(index) => { let index = index.current_index(); // Already at the start? if index != 0 { self.counters.guard().move_to(index, index - 1); } } } }\n} fn main() { let app = RelmApp::new(\"relm4.example.factory\"); app.run::(0);\n}","breadcrumbs":"Efficient UI updates » Factories » The complete code","id":"74","title":"The complete code"},"75":{"body":"Most widgets such as gtk::Box don't use the position function because they are one-dimensional and place widgets relative to each other. However, a few widgets such as gtk::Grid use fixed positions and need the position function to work inside a factory. The task of the position function is mainly to map the index to a certain position/area (x, y, width and height) of a factory widget within the parent widget (view). The code we will use in this chapter is based on the grid_factory example here . Run cargo run --example grid_factory from the example directory if you want to see the code in action.","breadcrumbs":"Efficient UI updates » The position function » The position function","id":"75","title":"The position function"},"76":{"body":"Let's take a grid as an example. For a grid, there are many possibilities to place your widgets. You can, for example, place three, four or five widgets per row or you could place a certain amount of widgets per column. You can even create patterns like a chess grid if you want to. However, we want to use a factory for generating our widgets, which means we only have the index to calculate the desired two-dimensional position. In the simplest case, we create a layout that places a certain amount of widgets per row or per column. Grid layout example To place three elements per row from left to right in a gtk::Grid we could use the following position function. fn position(&self, index: &usize) -> GridPosition { let index = *index as i32; let row = index / 3; let column = index % 3; GridPosition { column, row, width: 1, height: 1, } } And indeed, it works as expected. Row placement grid screenshot","breadcrumbs":"Efficient UI updates » The position function » How it works","id":"76","title":"How it works"},"77":{"body":"Let's have a look at a more complex layout. It's unlikely that this would be used in a real application, but it's still interesting to have a look at it. To create a chess grid layout, we need to place our widgets only on fields of one color and leave the other fields empty. Grid layout example Actually, the code isn't too complicated. fn position(&self, index: &usize) -> GridPosition { let index = *index as i32; // add a new row for every 5 elements let row = index / 5; // use every second column and move columns in uneven rows by 1 let column = (index % 5) * 2 + row % 2; GridPosition { column, row, width: 1, height: 1, } } And as you can see, it works! Chess grid layout screenshot","breadcrumbs":"Efficient UI updates » The position function » A chess grid","id":"77","title":"A chess grid"},"78":{"body":"Technically, we already used components in the previous chapters. So far, we've only used one component per application, but in this chapter, we're going to use multiple components to structure our app. Components are independent parts of your application that can communicate with each other. They are used in a parent-child model: The main app component can have several components and each component can have child components and so on. This means that each component has a parent, except for the main app component which is at the top of this tree structure. To showcase this, we will create a small application which opens a dialog when the user tries to close it. The header bar and the dialog will be implemented as standalone components. App screenshot dark App screenshot dark","breadcrumbs":"Components » Components","id":"78","title":"Components"},"79":{"body":"Components are very useful for separating parts of the UI into smaller, more manageable parts. They are not necessary but for larger applications, they can be very helpful.","breadcrumbs":"Components » When to use components","id":"79","title":"When to use components"},"8":{"body":"Like a person, a computer needs a brain to be functional. It needs to process our messages and remember the results. Relm4 uses the term model as a data type that represents the application state, the memory of your application. For example, to store a counter value, we can store a u8 in our model: struct AppModel { counter: u8,\n}","breadcrumbs":"Basic concepts » Model » Model","id":"8","title":"Model"},"80":{"body":"Components store their child components inside the model as a Controller and handle output messages in the init function by calling the forward method. let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); The forward method will redirect the output messages from the child component and transform them into the parent's input messages. Components are independent from each another so a component can be used easily with several different parent components. Therefore, the child component doesn't know which type its parent component will have. Thus, the forward method allows the parent component to transform the output messages of child components to a message type it can handle properly. In this example, HeaderOutput messages are translated into AppMsg.","breadcrumbs":"Components » Message handling","id":"80","title":"Message handling"},"81":{"body":"Let's write a small example app to see how components can be used in action. For this example, we write parts of an app that can edit images. The app we will write in this chapter is also available here . Run cargo run --example components from the example directory if you want to see the code in action.","breadcrumbs":"Components » Example application","id":"81","title":"Example application"},"82":{"body":"Our first component will be a header bar. There are not a lot of advantages for writing this as component except for reducing the complexity in other parts of our UI. The header bar will have three buttons for three modes that our application can have: View : View the image. Edit : Edit the image. Export : Export the image in different formats. We will not implement the actual functionality, but instead use placeholders to keep things simple.","breadcrumbs":"Components » The header bar","id":"82","title":"The header bar"},"83":{"body":"Usually you want to store everything that affects only your component in the state of the component. However, in this case, there is no state that can be stored in the component, but only state that affects the root component (app). Therefore, we leave the model empty and only send messages to the root component. struct HeaderModel; The message type allows us to switch between the modes. #[derive(Debug)]\nenum HeaderOutput { View, Edit, Export,\n} Our component needs no update method, because the view can emit the component's output messages as part of its click signal handlers, as we will see in the next section.","breadcrumbs":"Components » The model","id":"83","title":"The model"},"84":{"body":"There's nothing special about widgets of a child component. The only difference to the main app component is that the root widget doesn't need to be a gtk::Window. Instead, we use a gtk::HeaderBar here, but theoretically the root widget doesn't even need to be a widget at all (which can be useful in special cases). view! { #[root] gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { add_css_class: \"linked\", #[name = \"group\"] gtk::ToggleButton { set_label: \"View\", set_active: true, connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::View).unwrap() } }, }, gtk::ToggleButton { set_label: \"Edit\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Edit).unwrap() } }, }, gtk::ToggleButton { set_label: \"Export\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Export).unwrap() } }, }, } } }","breadcrumbs":"Components » The widgets","id":"84","title":"The widgets"},"85":{"body":"As with a normal application used to edit files, we want to notify the user before they accidentally close the application and discard all progress. For this — you might have guessed it already — we will use another component.","breadcrumbs":"Components » The close alert","id":"85","title":"The close alert"},"86":{"body":"The state of the dialog only needs to store whether or not it's hidden. struct DialogModel { hidden: bool,\n} The message contains three options: Show is used by the parent to display the dialog. Accept is used internally to indicate that the user agreed to close the application. Cancel is used internally to indicate that the user changes his mind and doesn't want to close the application. #[derive(Debug)]\nenum DialogInput { Show, Accept, Cancel,\n} #[derive(Debug)]\nenum DialogOutput { Close,\n}","breadcrumbs":"Components » The model","id":"86","title":"The model"},"87":{"body":"Unlike the last component, the DialogModel component doesn't send its output messages from a signal handler. Instead, the response signal handler sends input messages to itself, handles them in update, and then sends output messages if necessary. This is a common pattern for more complex components. If your component accepts non-internal inputs as well, you may want to mark the internal variants as #[doc(hidden)] so that users of your component know they're only intended for internal use. view! { gtk::MessageDialog { set_modal: true, #[watch] set_visible: !model.hidden, set_text: Some(\"Do you want to close before saving?\"), set_secondary_text: Some(\"All unsaved changes will be lost\"), add_button: (\"Close\", gtk::ResponseType::Accept), add_button: (\"Cancel\", gtk::ResponseType::Cancel), connect_response[sender] => move |_, resp| { sender.input(if resp == gtk::ResponseType::Accept { DialogInput::Accept } else { DialogInput::Cancel }) } } } In the update implementation, we match the input messages and emit an output if needed. fn update(&mut self, msg: Self::Input, sender: ComponentSender) { match msg { DialogInput::Show => self.hidden = false, DialogInput::Accept => { self.hidden = true; sender.output(DialogOutput::Close).unwrap() } DialogInput::Cancel => self.hidden = true, } }","breadcrumbs":"Components » The widgets","id":"87","title":"The widgets"},"88":{"body":"Now all parts come together to form a single app.","breadcrumbs":"Components » The main app","id":"88","title":"The main app"},"89":{"body":"First, let's define the model of the main app and its messages. #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n} The AppMode struct stores the modes the application can be in. The SetMode message is transformed from the output of our header bar component to update the state of the main application when someone presses a button in the header bar. The Close message is transformed from the output of the dialog component to indicate that the window should be closed. In the model, we store the current AppMode as well as a Controller for each of our child components. The update function of the model is pretty straightforward. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::SetMode(mode) => { self.mode = mode; } AppMsg::CloseRequest => { self.dialog.sender().send(DialogInput::Show).unwrap(); } AppMsg::Close => { relm4::main_application().quit(); } } } We can retrieve a sender for the child component by calling the sender() method on the associated Controller, and then send messages of the associated Input type through it.","breadcrumbs":"Components » The model","id":"89","title":"The model"},"9":{"body":"To help the computer understand what we want to tell it, we first translate user interactions into messages. In Relm4, a message can be any data type, but most often, an enum is used. enum AppMsg { Increment, Decrement,\n} Computers are capable of both sending and receiving messages and similarly, components in Relm4 can send and receive messages. This is accomplished by having two types of messages: Input and Output.","breadcrumbs":"Basic concepts » Messages » Messages","id":"9","title":"Messages"},"90":{"body":"When initializing the app component, we construct the child components by passing the appropriate Init and forwarding any desired inputs and outputs. This is done through a builder provided by Component implementations. We pass the initial parameters via the launch method, and then retrieve the final Controller by calling the forward method. In addition to starting the component, the forward method allows us to take the outputs of the component, transform them with a mapping function, and then pass the result as an input message to another sender (in this case, the input sender of the app component). If you don't need to forward any outputs, you can start the component with the detach method instead. fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); let dialog = DialogModel::builder() .transient_for(&root) .launch(true) .forward(sender.input_sender(), |msg| match msg { DialogOutput::Close => AppMsg::Close, }); let model = AppModel { mode: params, header, dialog, }; let widgets = view_output!(); ComponentParts { model, widgets } } Also, we set the set_transient_for property, which actually uses the main window. The dialog should set his parent window so that GTK can handle the dialog better. The GTK docs state: \"[set_transient_for] allows window managers to e.g. keep the dialog on top of the main window, or center the dialog over the main window\". #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n}","breadcrumbs":"Components » Controllers","id":"90","title":"Controllers"},"91":{"body":"We're almost done! Lastly, let's take a look at the app widgets. view! { main_window = gtk::Window { set_default_width: 500, set_default_height: 250, set_titlebar: Some(model.header.widget()), gtk::Label { #[watch] set_label: &format!(\"Placeholder for {:?}\", model.mode), }, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop } } } Most notably, we retrieve the root widget of our header component through the widget() method on the associated Controller to set it as a child of the main window.","breadcrumbs":"Components » The widgets","id":"91","title":"The widgets"},"92":{"body":"You now know most of the secrets that Relm4 offers. Components can be powerful and if they are implemented correctly, they are even reusable across different apps. The relm4-components crate offers several reusable components you can use in your applications. In the following chapters, we'll look at an even simpler component type called worker, how to implement reusable components yourself and how to use components with async code and multiple threads.","breadcrumbs":"Components » Conclusion","id":"92","title":"Conclusion"},"93":{"body":"Let's review our code in one piece one more time to see how all these parts work together: use gtk::prelude::{ ApplicationExt, ButtonExt, DialogExt, GtkWindowExt, ToggleButtonExt, WidgetExt,\n};\nuse relm4::*; struct HeaderModel; #[derive(Debug)]\nenum HeaderOutput { View, Edit, Export,\n} #[relm4::component]\nimpl SimpleComponent for HeaderModel { type Init = (); type Input = (); type Output = HeaderOutput; view! { #[root] gtk::HeaderBar { #[wrap(Some)] set_title_widget = >k::Box { add_css_class: \"linked\", #[name = \"group\"] gtk::ToggleButton { set_label: \"View\", set_active: true, connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::View).unwrap() } }, }, gtk::ToggleButton { set_label: \"Edit\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Edit).unwrap() } }, }, gtk::ToggleButton { set_label: \"Export\", set_group: Some(&group), connect_toggled[sender] => move |btn| { if btn.is_active() { sender.output(HeaderOutput::Export).unwrap() } }, }, } } } fn init( _params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = HeaderModel; let widgets = view_output!(); ComponentParts { model, widgets } }\n} struct DialogModel { hidden: bool,\n} #[derive(Debug)]\nenum DialogInput { Show, Accept, Cancel,\n} #[derive(Debug)]\nenum DialogOutput { Close,\n} #[relm4::component]\nimpl SimpleComponent for DialogModel { type Init = bool; type Input = DialogInput; type Output = DialogOutput; view! { gtk::MessageDialog { set_modal: true, #[watch] set_visible: !model.hidden, set_text: Some(\"Do you want to close before saving?\"), set_secondary_text: Some(\"All unsaved changes will be lost\"), add_button: (\"Close\", gtk::ResponseType::Accept), add_button: (\"Cancel\", gtk::ResponseType::Cancel), connect_response[sender] => move |_, resp| { sender.input(if resp == gtk::ResponseType::Accept { DialogInput::Accept } else { DialogInput::Cancel }) } } } fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let model = DialogModel { hidden: params }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, sender: ComponentSender) { match msg { DialogInput::Show => self.hidden = false, DialogInput::Accept => { self.hidden = true; sender.output(DialogOutput::Close).unwrap() } DialogInput::Cancel => self.hidden = true, } }\n} #[derive(Debug)]\nenum AppMode { View, Edit, Export,\n} #[derive(Debug)]\nenum AppMsg { SetMode(AppMode), CloseRequest, Close,\n} struct AppModel { mode: AppMode, header: Controller, dialog: Controller,\n} #[relm4::component]\nimpl SimpleComponent for AppModel { type Init = AppMode; type Input = AppMsg; type Output = (); view! { main_window = gtk::Window { set_default_width: 500, set_default_height: 250, set_titlebar: Some(model.header.widget()), gtk::Label { #[watch] set_label: &format!(\"Placeholder for {:?}\", model.mode), }, connect_close_request[sender] => move |_| { sender.input(AppMsg::CloseRequest); gtk::glib::Propagation::Stop } } } fn init( params: Self::Init, root: Self::Root, sender: ComponentSender, ) -> ComponentParts { let header: Controller = HeaderModel::builder() .launch(()) .forward(sender.input_sender(), |msg| match msg { HeaderOutput::View => AppMsg::SetMode(AppMode::View), HeaderOutput::Edit => AppMsg::SetMode(AppMode::Edit), HeaderOutput::Export => AppMsg::SetMode(AppMode::Export), }); let dialog = DialogModel::builder() .transient_for(&root) .launch(true) .forward(sender.input_sender(), |msg| match msg { DialogOutput::Close => AppMsg::Close, }); let model = AppModel { mode: params, header, dialog, }; let widgets = view_output!(); ComponentParts { model, widgets } } fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::SetMode(mode) => { self.mode = mode; } AppMsg::CloseRequest => { self.dialog.sender().send(DialogInput::Show).unwrap(); } AppMsg::Close => { relm4::main_application().quit(); } } }\n} fn main() { let relm = RelmApp::new(\"ewlm4.test.components\"); relm.run::(AppMode::Edit);\n}","breadcrumbs":"Components » The complete code","id":"93","title":"The complete code"},"94":{"body":"Most user inputs are fairly easy to process. After receiving a message, you process it in the update function and update the view. Everything only takes a couple of milliseconds at most, so the user won't even notice the slight delay. However, when you have to perform complex calculations or I/O-bound operations that take more than a couple of milliseconds to complete, the user will start noticing that the app doesn't feel reactive or \"snappy\" anymore. For example, such operations are performing network requests, filesystems operations or calculating the last digit of π. To better visualize what happens, let's look at the following image. The expected behavior is on the left, where processing of updates is fast and the app spends most of the time idle, waiting for new user inputs (aka events). Yet on the right, the update function is very slow and blocks the entire application so that no other events can be processed in the meantime and the view update is delayed. The behavior on the right will freeze the entire application and should be avoided. Fortunately, Relm4 gives you plenty of options to keep your application responsive.","breadcrumbs":"Threads and async » Introduction","id":"94","title":"Introduction"},"95":{"body":"In general, we can divide the problem into two categories: CPU-bound operations take a lot of time because actual work needs to be done by the CPU. I/O-bound operations take a lot of time because we have to wait for something to happen, for example, a response from a server. This means that we have CPU resources to do other things in the meantime, but to use them, we need a mechanism like async/await.","breadcrumbs":"Threads and async » Understanding the problem","id":"95","title":"Understanding the problem"},"96":{"body":"Let's look at an example of a CPU-bound operation. For an app that generates cryptographic keys, you might define a generate_rsa_key() function. This function takes some time to compute because generating the key is a difficult calculation so we can treat it as if it was implemented like this: fn generate_rsa_key() { std::thread::sleep(Duration::from_secs(10));\n} If our component receives a GenerateKey message, we start generating the key. fn update(&mut self, msg: Self::Input, _sender: ComponentSender) { match msg { AppMsg::GenerateKey => { self.rsa_key = generate_rsa_key(); } } } Unfortunately, this will freeze our app. There's no trick to avoid this, the CPU must do a lot of work to calculate the result. However, we can offload this work to other threads to keep our application responsive. Possible solutions for this problem are: Workers : A component without widgets that runs on its own thread Commands : Offload tasks to a runtime in the background and receive a message when the task completes Both are covered in the following chapters.","breadcrumbs":"Threads and async » CPU-bound and other synchronous operations","id":"96","title":"CPU-bound and other synchronous operations"},"97":{"body":"Let's say we also need to perform a web-request to fetch existing encryption keys from a server. In theory, we could use a blocking HTTP client which would put us in the same situation as before. However, using async/await allows us to use the CPU for other things while we're waiting for the response. The resulting asynchronous function could look like this. async fn fetch_rsa_key() { tokio::time::sleep(Duration::from_secs(10)).await;\n} Since we now have an asynchronous function, we can't simply call it like a regular function. Again, there are two options to make this work: Async components and factories : Asynchronous traits for components and factories Commands : Offload tasks to a runtime in the background and receive a message when the task completes","breadcrumbs":"Threads and async » I/O-bound and other async operations","id":"97","title":"I/O-bound and other async operations"},"98":{"body":"Workers are simply components that don't have any widgets. They can be quite useful for applications that need to handle long tasks while remaining responsive. In particular, they are suitable for CPU-bound tasks which need to be handled one at the time because they run on a different thread.","breadcrumbs":"Threads and async » Workers » Workers","id":"98","title":"Workers"},"99":{"body":"A worker is implemented similarly to a component by using the Worker trait. Since workers don't have widgets, you don't need to provide a Widgets type. #[derive(Debug)]\nenum AppMsg { Increment, Decrement,\n} #[derive(Debug)]\nenum AsyncHandlerMsg { DelayedIncrement, DelayedDecrement,\n} struct AsyncHandler; impl Worker for AsyncHandler { type Init = (); type Input = AsyncHandlerMsg; type Output = AppMsg; fn init(_init: Self::Init, _sender: ComponentSender) -> Self { Self } fn update(&mut self, msg: AsyncHandlerMsg, sender: ComponentSender) { // Simulating heavy CPU-bound task std::thread::sleep(Duration::from_secs(1)); // Send the result of the calculation back match msg { AsyncHandlerMsg::DelayedIncrement => sender.output(AppMsg::Increment), AsyncHandlerMsg::DelayedDecrement => sender.output(AppMsg::Decrement), } .unwrap() }\n} Workers are constructed similarly to components, too. Use the provided builder to retrieve a WorkerController. fn init(_: (), root: Self::Root, sender: ComponentSender) -> ComponentParts { let model = AppModel { counter: 0, worker: AsyncHandler::builder() .detach_worker(()) .forward(sender.input_sender(), identity), }; let widgets = view_output!(); ComponentParts { model, widgets } } Through the WorkerController, you can send and receive messages from the worker. The worker's update function will run on a separate thread, so your other components won't be blocked. struct AppModel { counter: u8, worker: WorkerController,\n}","breadcrumbs":"Threads and async » Workers » Implementing a worker","id":"99","title":"Implementing a worker"}},"length":188,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{".":{"=":{"2":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{".":{"1":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":2,"docs":{"164":{"tf":1.0},"170":{"tf":1.0}}},"5":{"df":1,"docs":{"168":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"2":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"9":{".":{"1":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"a":{"d":{"5":{"c":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":2.6457513110645907},"160":{"tf":3.7416573867739413},"162":{"tf":4.242640687119285},"41":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"1":{".":{"7":{"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":2.0},"59":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0}}},"2":{"df":1,"docs":{"145":{"tf":1.0}}},"3":{"df":1,"docs":{"1":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544},"21":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"2":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"77":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"x":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"3":{"0":{"0":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"4":{"0":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"2":{"df":6,"docs":{"107":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}},"5":{"0":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"8":{"df":2,"docs":{"1":{"tf":1.0},"132":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"4":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"6":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"162":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":2.449489742783178},"162":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"9":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"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":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"5":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"6":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"7":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"8":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"9":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"115":{"tf":1.0},"144":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"124":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"125":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"132":{"tf":1.0}}}}},"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"174":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":9,"docs":{"115":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"65":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"15":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"48":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"29":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"119":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"a":{"df":2,"docs":{"153":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}},"df":5,"docs":{"107":{"tf":2.6457513110645907},"108":{"tf":2.8284271247461903},"109":{"tf":2.0},"110":{"tf":3.1622776601683795},"85":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772}},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":2.0},"110":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"i":{"a":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"159":{"tf":4.69041575982343},"162":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"113":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"103":{"tf":1.0},"144":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"103":{"tf":1.0},"167":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"0":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":61,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"107":{"tf":2.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":3.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"78":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":32,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":23,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"18":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"131":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"90":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"148":{"tf":1.0}}},"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":6,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"174":{"tf":1.0},"30":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":3.1622776601683795},"120":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"174":{"tf":1.4142135623730951},"35":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"144":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":3.605551275463989},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"92":{"tf":1.0},"97":{"tf":1.7320508075688772}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"[":{"0":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}},"1":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"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":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.0},"71":{"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":18,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"187":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"170":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"r":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":3,"docs":{"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"184":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"186":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"103":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"137":{"tf":1.0},"144":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"d":{"df":2,"docs":{"125":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":2.0},"167":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"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":1,"docs":{"154":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":13,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"43":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"u":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}},"df":16,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.4142135623730951},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"44":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"130":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"108":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"15":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"170":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"133":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":15,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"149":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"42":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.6457513110645907},"164":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"138":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":2.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"83":{"tf":1.0}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"148":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"101":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"m":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"128":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":2.0},"77":{"tf":2.0}}}}}},"m":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"df":13,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"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":{},"g":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"100":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"142":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"78":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"x":{"df":7,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"100":{"tf":2.0},"103":{"tf":3.3166247903554},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"108":{"tf":3.872983346207417},"109":{"tf":2.6457513110645907},"11":{"tf":2.6457513110645907},"110":{"tf":2.0},"114":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.0},"138":{"tf":2.23606797749979},"14":{"tf":2.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":3.605551275463989},"170":{"tf":1.7320508075688772},"171":{"tf":2.8284271247461903},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":3.1622776601683795},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"21":{"tf":3.1622776601683795},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":3.4641016151377544},"79":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":2.0},"9":{"tf":1.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.0},"92":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":18,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"57":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"126":{"tf":1.0},"148":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":2.0}},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"181":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"136":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"6":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"125":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"1":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"1":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":2.0},"162":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"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":1,"docs":{"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"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":{},"f":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"148":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":2.8284271247461903},"160":{"tf":2.449489742783178},"162":{"tf":2.6457513110645907}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":40,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"18":{"tf":1.0},"185":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":3.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"112":{"tf":1.0},"44":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"108":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":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":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"32":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"156":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"r":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"38":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"171":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":10,"docs":{"107":{"tf":2.0},"108":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"110":{"tf":3.605551275463989},"167":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"146":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.4142135623730951},"16":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"95":{"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":3,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"12":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"58":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"144":{"tf":1.0},"167":{"tf":1.0},"183":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"115":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"178":{"tf":1.0},"21":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"119":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"140":{"tf":1.0},"27":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"149":{"tf":1.0},"173":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"d":{"df":6,"docs":{"120":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.7320508075688772},"156":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"183":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"169":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":51,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":3.3166247903554},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"138":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"57":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"103":{"tf":2.449489742783178},"105":{"tf":1.0},"106":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"173":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"122":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":1,"docs":{"162":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"35":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":2.449489742783178},"162":{"tf":2.8284271247461903},"20":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":3.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":2.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":28,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}},"x":{"df":3,"docs":{"119":{"tf":1.0},"39":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"45":{"tf":2.23606797749979},"46":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"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":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"110":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":2.0},"162":{"tf":3.872983346207417},"185":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":2.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"<":{"b":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"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":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772},"90":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":4,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"z":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"31":{"tf":1.0}},"i":{"df":5,"docs":{"125":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":46,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.8284271247461903},"106":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"64":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.4142135623730951}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":3.0},"165":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"21":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"h":{"c":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}}},"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":{"4":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"b":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":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":{"133":{"tf":2.0}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"45":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"w":{"df":1,"docs":{"36":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}}},"4":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.6457513110645907},"12":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.4142135623730951},"6":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":5,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"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":{},"i":{"d":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":3.0},"162":{"tf":3.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"157":{"tf":3.3166247903554},"159":{"tf":3.605551275463989},"162":{"tf":3.605551275463989},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"{":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"_":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}}}}}},"df":29,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"173":{"tf":1.4142135623730951},"57":{"tf":1.0},"72":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"163":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"l":{"df":14,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"80":{"tf":1.7320508075688772},"87":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"167":{"tf":1.0},"30":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"167":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"p":{"df":15,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":4.47213595499958},"124":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"79":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"172":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"150":{"tf":1.0},"35":{"tf":1.0}}},"df":31,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"131":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"100":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":11,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"157":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":2,"docs":{"159":{"tf":1.0},"176":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"173":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":41,"docs":{"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":2.0},"152":{"tf":1.0},"160":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"164":{"tf":1.0},"6":{"tf":1.0}}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"131":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"i":{"c":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"146":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"103":{"tf":1.0},"167":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"_":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":38,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"20":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"45":{"tf":2.449489742783178}}},"n":{"c":{"df":3,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"15":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}},"f":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"129":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"106":{"tf":1.0}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"t":{"'":{"df":15,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":2.0},"35":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"160":{"tf":1.0}}}},"y":{"df":2,"docs":{"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":2.0},"25":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"35":{"tf":1.0}},"r":{"df":7,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"154":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":5,"docs":{"171":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":2.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"129":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"'":{"df":31,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}},"’":{"df":2,"docs":{"110":{"tf":1.0},"122":{"tf":1.0}}}}},"i":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"15":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"16":{"tf":2.0},"5":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"119":{"tf":1.0},"160":{"tf":1.0}}},"k":{"df":6,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":2.0},"148":{"tf":1.0},"150":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}}},"o":{"a":{"d":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"4":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"145":{"tf":1.4142135623730951},"157":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":7,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"30":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"111":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":3,"docs":{"172":{"tf":1.0},"23":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":15,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":50,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.0},"112":{"tf":1.7320508075688772},"129":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":2.0},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"158":{"tf":1.0},"160":{"tf":3.1622776601683795},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"24":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":35,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"76":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":10,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"90":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"k":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"7":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"8":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.0},"165":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"0":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"137":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":47,"docs":{"10":{"tf":2.6457513110645907},"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":2.449489742783178},"11":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"12":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"21":{"tf":3.1622776601683795},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":2.0},"9":{"tf":2.449489742783178},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"41":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"142":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"120":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"74":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"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":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"178":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":50,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":2.23606797749979},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":2.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"115":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":7,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":2.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":2.8284271247461903},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"28":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"174":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"146":{"tf":1.0},"72":{"tf":1.0}}}},"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":2.0},"162":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"142":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"144":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"160":{"tf":1.4142135623730951},"54":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"38":{"tf":1.0}}},"h":{"df":3,"docs":{"146":{"tf":1.0},"161":{"tf":1.0},"84":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"115":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"df":30,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"135":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"123":{"tf":1.4142135623730951},"42":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"d":{"df":5,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"46":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":3,"docs":{"174":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":6,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"124":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.0},"167":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"128":{"tf":1.0},"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"105":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"135":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"1":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"119":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"74":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.0},"122":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"145":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"108":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"103":{"tf":1.4142135623730951},"145":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":14,"docs":{"108":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"38":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":2,"docs":{"119":{"tf":2.0},"57":{"tf":1.4142135623730951}}},"t":{"df":21,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"142":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"119":{"tf":1.0},"148":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"145":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}}}},"y":{"df":2,"docs":{"21":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951}},"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":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"2":{"4":{"df":0,"docs":{},"x":{"2":{"4":{"/":{"a":{"c":{"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":1,"docs":{"101":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"146":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":4,"docs":{"16":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"127":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"160":{"tf":1.0},"186":{"tf":1.0},"37":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"138":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":2,"docs":{"166":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":2.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":4,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":2.6457513110645907},"126":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":2.8284271247461903},"160":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"44":{"tf":2.0},"90":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"0":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"df":3,"docs":{"108":{"tf":3.3166247903554},"110":{"tf":3.3166247903554},"139":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"112":{"tf":1.0},"139":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":4,"docs":{"160":{"tf":1.0},"20":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"168":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"138":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"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":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"105":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0}},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"153":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"72":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":2.23606797749979},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"48":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":4,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"113":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"183":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"15":{"tf":1.0}}}},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"4":{"'":{"df":3,"docs":{"144":{"tf":1.0},"165":{"tf":1.0},"39":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"185":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":7,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":48,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"a":{"d":{"d":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"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":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951},"93":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"v":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"180":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"173":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"120":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"4":{"tf":1.0}}},"y":{"]":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"108":{"tf":3.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"167":{"tf":1.0},"178":{"tf":1.0}}},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":33,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"57":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"4":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"6":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":2.449489742783178},"137":{"tf":2.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"171":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":14,"docs":{"1":{"tf":1.7320508075688772},"103":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":2.449489742783178},"46":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"60":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":1,"docs":{"23":{"tf":1.0}}},"n":{"df":2,"docs":{"161":{"tf":1.0},"24":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"35":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{".":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":1,"docs":{"162":{"tf":1.0}}},"4":{"df":1,"docs":{"162":{"tf":1.0}}},"5":{"df":1,"docs":{"162":{"tf":1.0}}},"6":{"df":1,"docs":{"162":{"tf":1.0}}},"7":{"df":1,"docs":{"162":{"tf":1.0}}},"8":{"df":1,"docs":{"162":{"tf":1.0}}},"9":{"df":1,"docs":{"162":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":1,"docs":{"162":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"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":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.0},"74":{"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":{},"o":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"145":{"tf":1.0},"162":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":2.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"n":{"d":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"148":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"170":{"tf":1.0},"30":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"170":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":12,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"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":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":3.3166247903554},"160":{"tf":2.449489742783178},"162":{"tf":2.0},"174":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"84":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"145":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":16,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"144":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":16,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"145":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"145":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":3.0},"110":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":2.0},"130":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"162":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"4":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"30":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":2.449489742783178},"125":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"52":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":1.0}},"n":{"df":2,"docs":{"128":{"tf":1.0},"137":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"108":{"tf":1.0},"126":{"tf":2.6457513110645907},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"187":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"i":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"155":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"157":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"153":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"0":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}},"i":{"df":6,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"23":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"d":{"df":2,"docs":{"119":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"t":{"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"106":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"c":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"d":{":":{":":{"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":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"2":{"1":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"96":{"tf":1.0}}},"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"177":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}},"p":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":45,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"167":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}},"i":{"df":3,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.4142135623730951},"184":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":3.0},"59":{"tf":3.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"(":{"4":{"2":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"b":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"106":{"tf":2.449489742783178},"75":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"40":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":4.242640687119285},"114":{"tf":2.8284271247461903},"115":{"tf":2.23606797749979},"116":{"tf":2.8284271247461903},"117":{"tf":3.0},"118":{"tf":2.0},"129":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":2.449489742783178},"109":{"tf":2.0},"110":{"tf":2.8284271247461903},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":2.0}}}},"t":{"'":{"df":8,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"157":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"135":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":10,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"k":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":2,"docs":{"15":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"44":{"tf":1.0}}}},"p":{"df":6,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"59":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":2.0},"147":{"tf":2.6457513110645907},"15":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"130":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"153":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"df":5,"docs":{"119":{"tf":1.0},"164":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":14,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":56,"docs":{"100":{"tf":2.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"162":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":3.7416573867739413},"23":{"tf":2.0},"25":{"tf":2.8284271247461903},"27":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0},"99":{"tf":2.0}}}}}},"u":{"6":{"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{")":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":3.1622776601683795},"177":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"i":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":2.6457513110645907},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"38":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.0},"183":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"120":{"tf":1.0},"159":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"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":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.6457513110645907},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":2.0},"48":{"tf":3.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"120":{"tf":1.7320508075688772},"128":{"tf":1.0}}}},"df":110,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"144":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":3.1622776601683795},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"108":{"tf":1.0}}},"df":15,"docs":{"108":{"tf":2.449489742783178},"110":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.0}}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":3,"docs":{"164":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0}}},"5":{"df":3,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"7":{"df":2,"docs":{"182":{"tf":1.0},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"114":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":2.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"19":{"tf":1.0},"20":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"e":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"!":{"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"u":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"173":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"1":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"a":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"175":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}}}},"df":55,"docs":{"103":{"tf":2.0},"104":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"31":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":5,"docs":{"103":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}},"b":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"135":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"48":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":83,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"110":{"tf":2.8284271247461903},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"12":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.6457513110645907},"142":{"tf":2.449489742783178},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":3.4641016151377544},"146":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":3.0},"162":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":2.0},"21":{"tf":4.123105625617661},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"27":{"tf":2.6457513110645907},"29":{"tf":2.0},"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":3.1622776601683795},"45":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"84":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"93":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"43":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"21":{"tf":1.0},"25":{"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.0},"124":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"144":{"tf":1.0},"166":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"164":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"103":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":40,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":2.0},"17":{"tf":1.0},"173":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"171":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":3.0}}}}},"l":{"d":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"142":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":4,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"174":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"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":15,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}}}}},"x":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"y":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"119":{"tf":1.0},"49":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{".":{"=":{"2":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{".":{"1":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"2":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":15,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}},"5":{"df":14,"docs":{"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"2":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0}}},"7":{"df":7,"docs":{"157":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"9":{".":{"1":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"a":{"d":{"5":{"c":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":2.6457513110645907},"160":{"tf":3.7416573867739413},"162":{"tf":4.242640687119285},"41":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"1":{".":{"7":{"5":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}},"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":2.0},"59":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0}}},"2":{"df":1,"docs":{"145":{"tf":1.0}}},"3":{"df":1,"docs":{"1":{"tf":1.0}}},"df":11,"docs":{"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544},"21":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.0}}}}},"2":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"77":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"x":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"3":{"0":{"0":{"df":14,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":2.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"4":{"0":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"162":{"tf":1.0}}},"2":{"df":6,"docs":{"107":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}},"5":{"0":{"0":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}},"df":11,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"8":{"df":2,"docs":{"1":{"tf":1.0},"132":{"tf":1.0}}},"_":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"160":{"tf":3.1622776601683795},"162":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"4":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"6":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"162":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":2.449489742783178},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":2.449489742783178},"162":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"9":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"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":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"5":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"6":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"7":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"8":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"9":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"115":{"tf":1.0},"144":{"tf":1.0},"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"21":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"124":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":2.0},"16":{"tf":1.0},"181":{"tf":1.7320508075688772},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"125":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"132":{"tf":1.0}}}}},"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"11":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.7320508075688772},"160":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"174":{"tf":1.0},"35":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":9,"docs":{"115":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"65":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"15":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"16":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"48":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"29":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"119":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"86":{"tf":1.0}}}}},"k":{"a":{"df":2,"docs":{"153":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}},"df":5,"docs":{"107":{"tf":2.6457513110645907},"108":{"tf":3.0},"109":{"tf":2.0},"110":{"tf":3.1622776601683795},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772}},"e":{":":{":":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":2.0},"110":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"i":{"a":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}},"v":{"df":3,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"159":{"tf":4.69041575982343},"162":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"142":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"113":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"103":{"tf":1.0},"144":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"57":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"106":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"103":{"tf":1.0},"167":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"0":{"df":4,"docs":{"116":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{">":{"(":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":62,"docs":{"100":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"107":{"tf":2.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":3.3166247903554},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"78":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":32,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":23,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"g":{":":{":":{"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"109":{"tf":2.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"18":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"131":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"90":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"1":{"df":1,"docs":{"148":{"tf":1.0}}},"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":6,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"174":{"tf":1.0},"30":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"119":{"tf":3.1622776601683795},"120":{"tf":2.8284271247461903},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":1.0},"174":{"tf":1.4142135623730951},"35":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"144":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"47":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"100":{"tf":1.0},"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":17,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":4.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"170":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"[":{"0":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}},"1":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"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":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"57":{"tf":2.8284271247461903},"65":{"tf":1.0},"71":{"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":18,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.0},"187":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"170":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"r":{"(":{"df":0,"docs":{},"f":{"3":{"2":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":3,"docs":{"78":{"tf":1.0},"82":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}},"i":{"c":{"df":12,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"184":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"186":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"21":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.0},"41":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"103":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"137":{"tf":1.0},"144":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"44":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"d":{"df":2,"docs":{"125":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.4142135623730951},"160":{"tf":2.0},"167":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"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":1,"docs":{"154":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":16,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":13,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":2.8284271247461903},"162":{"tf":3.0},"50":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"43":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"11":{"tf":1.0},"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"157":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"u":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}},"df":16,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":2.449489742783178},"136":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":11,"docs":{"109":{"tf":1.4142135623730951},"119":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.4142135623730951},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"70":{"tf":1.4142135623730951},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"120":{"tf":1.0},"44":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"130":{"tf":2.23606797749979},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"108":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"15":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"170":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"133":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}}},"df":15,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"4":{"tf":1.4142135623730951},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"149":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"42":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"38":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":29,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.6457513110645907},"164":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.6457513110645907},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"138":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"2":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":18,"docs":{"107":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"142":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":2.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"41":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":2,"docs":{"136":{"tf":1.0},"137":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"117":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.4142135623730951},"44":{"tf":1.0},"83":{"tf":1.0}}}},"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"2":{"df":2,"docs":{"148":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"101":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"m":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"141":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"128":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"76":{"tf":2.0},"77":{"tf":2.0}}}}}},"m":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"45":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}}},"df":14,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"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":{},"g":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"100":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"142":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"47":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"21":{"tf":1.0},"78":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"x":{"df":7,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":93,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"100":{"tf":2.0},"103":{"tf":3.605551275463989},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.6457513110645907},"108":{"tf":4.123105625617661},"109":{"tf":2.8284271247461903},"11":{"tf":2.6457513110645907},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":2.449489742783178},"138":{"tf":2.6457513110645907},"139":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.0},"169":{"tf":3.7416573867739413},"170":{"tf":1.7320508075688772},"171":{"tf":3.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":3.1622776601683795},"183":{"tf":2.0},"184":{"tf":1.0},"21":{"tf":3.3166247903554},"25":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":3.7416573867739413},"79":{"tf":2.0},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"9":{"tf":1.0},"90":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":18,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"48":{"tf":1.4142135623730951},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.0},"57":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"126":{"tf":1.0},"148":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":2.0}},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"30":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":2.0},"160":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"90":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"141":{"tf":1.7320508075688772},"160":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"181":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"49":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":3,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"34":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"6":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"44":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"125":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"30":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"1":{"df":2,"docs":{"160":{"tf":2.0},"162":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"1":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":2.0},"162":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"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":1,"docs":{"162":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"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":{},"f":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"148":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"12":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":2.8284271247461903},"160":{"tf":2.449489742783178},"162":{"tf":2.6457513110645907}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":40,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":2.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"18":{"tf":1.0},"185":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":3.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"63":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"21":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":27,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"112":{"tf":1.0},"44":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"108":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"135":{"tf":1.0},"151":{"tf":1.0},"44":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"134":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"b":{"df":0,"docs":{},"g":{"!":{"(":{"&":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":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":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"142":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"32":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":2.449489742783178}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"119":{"tf":1.0},"167":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"156":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"136":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"r":{"df":5,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"38":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":2.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"38":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":3,"docs":{"171":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":10,"docs":{"107":{"tf":2.0},"108":{"tf":3.4641016151377544},"109":{"tf":2.449489742783178},"110":{"tf":3.605551275463989},"167":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"86":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"42":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"75":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"146":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.7320508075688772},"16":{"tf":1.0},"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"2":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"95":{"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":3,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"43":{"tf":1.4142135623730951},"90":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"12":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"58":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"106":{"tf":1.0},"12":{"tf":1.0},"173":{"tf":1.0},"38":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"144":{"tf":1.0},"167":{"tf":1.0},"183":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"106":{"tf":1.0},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"115":{"tf":1.0},"35":{"tf":1.0},"60":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"132":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"178":{"tf":1.0},"21":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"119":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"140":{"tf":1.0},"27":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.4142135623730951}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"149":{"tf":1.0},"173":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":31,"docs":{"160":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":2.23606797749979},"68":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"m":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"d":{"df":6,"docs":{"120":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"41":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"152":{"tf":1.0},"17":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"38":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.7320508075688772},"156":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"144":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"119":{"tf":1.0},"144":{"tf":1.0},"183":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"169":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":7,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":51,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":3.4641016151377544},"44":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"45":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"138":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"57":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}},"r":{"a":{"df":3,"docs":{"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"46":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":29,"docs":{"103":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"173":{"tf":2.0},"184":{"tf":1.7320508075688772},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"165":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"173":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"122":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":1,"docs":{"162":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"35":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"168":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"125":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":2.449489742783178},"162":{"tf":2.8284271247461903},"20":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":3.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":2.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}},"x":{"df":3,"docs":{"119":{"tf":1.0},"39":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"45":{"tf":2.23606797749979},"46":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"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":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"110":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":2.0},"162":{"tf":3.872983346207417},"185":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":2.449489742783178},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"\"":{">":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}},":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"144":{"tf":2.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"<":{"b":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"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":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"173":{"tf":1.0},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772},"90":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":4,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"z":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"147":{"tf":1.0},"31":{"tf":1.0}},"i":{"df":5,"docs":{"125":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.8284271247461903},"106":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":2.23606797749979},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"64":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"170":{"tf":1.4142135623730951}}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":3.0},"165":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"21":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"h":{"c":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{}}},"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":{"4":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"137":{"tf":1.7320508075688772},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"b":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"133":{"tf":1.0},"134":{"tf":1.0}}},"df":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":{"133":{"tf":2.0}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"45":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":2.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"134":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"77":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"w":{"df":1,"docs":{"36":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}}},"4":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.6457513110645907},"12":{"tf":1.0},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.4142135623730951},"6":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":5,"docs":{"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":19,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"91":{"tf":1.0},"93":{"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":{},"i":{"d":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"41":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":3.0},"162":{"tf":3.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"157":{"tf":3.3166247903554},"159":{"tf":3.605551275463989},"162":{"tf":3.605551275463989},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"66":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"{":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"_":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}}}}}},"df":29,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.23606797749979},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"186":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"173":{"tf":1.4142135623730951},"57":{"tf":1.0},"72":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}},"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"24":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"l":{"df":14,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"80":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"167":{"tf":1.0},"30":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"120":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"167":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}},"p":{"df":15,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":4.47213595499958},"124":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"79":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"172":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"150":{"tf":1.0},"35":{"tf":1.0}}},"df":31,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"125":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"131":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":4,"docs":{"100":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"3":{"2":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":11,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"157":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":2.0},"52":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":2,"docs":{"159":{"tf":1.0},"176":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"173":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"38":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":41,"docs":{"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":2.0},"152":{"tf":1.0},"160":{"tf":2.6457513110645907},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"12":{"tf":1.0}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"164":{"tf":1.0},"6":{"tf":1.0}}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"10":{"tf":1.0},"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}},"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.449489742783178},"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"131":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":2.8284271247461903},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"i":{"c":{"df":6,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"146":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"103":{"tf":1.0},"167":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"_":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"67":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"103":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"169":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"167":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":38,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":2.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0}}}}},"i":{"d":{"df":7,"docs":{"14":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"20":{"tf":1.0},"29":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":2.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"45":{"tf":2.449489742783178}}},"n":{"c":{"df":3,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"15":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}}}},"n":{"d":{"df":4,"docs":{"108":{"tf":1.0},"147":{"tf":1.0},"37":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"106":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0}}}}},"f":{"a":{"c":{"df":5,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"41":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"106":{"tf":1.0}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.7320508075688772},"24":{"tf":1.0}}}}},"t":{"'":{"df":15,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.4142135623730951},"167":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":2.0},"35":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"v":{"df":1,"docs":{"122":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"106":{"tf":1.0},"127":{"tf":1.0},"159":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"160":{"tf":1.0}}}},"y":{"df":2,"docs":{"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":14,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"141":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":2.0},"25":{"tf":2.0},"29":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"35":{"tf":1.0}},"r":{"df":7,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"154":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"90":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":5,"docs":{"171":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":2.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"23":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"129":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"t":{"'":{"df":31,"docs":{"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":2,"docs":{"108":{"tf":1.0},"144":{"tf":1.0}},"’":{"df":2,"docs":{"110":{"tf":1.0},"122":{"tf":1.0}}}}},"i":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"15":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"169":{"tf":1.0},"39":{"tf":1.0},"46":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"16":{"tf":2.0},"5":{"tf":1.7320508075688772}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0}}},"k":{"df":6,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"3":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":2.23606797749979},"148":{"tf":1.0},"150":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}}}},"o":{"a":{"d":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"0":{".":{"7":{"df":1,"docs":{"162":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"4":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"145":{"tf":1.4142135623730951},"157":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":7,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"30":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"111":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":3,"docs":{"172":{"tf":1.0},"23":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":15,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":59,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":1.0},"112":{"tf":1.7320508075688772},"129":{"tf":1.0},"138":{"tf":2.449489742783178},"139":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":2.6457513110645907},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":2.8284271247461903},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":2.8284271247461903},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":2.0},"27":{"tf":2.8284271247461903},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"24":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"3":{"0":{"0":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"162":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":35,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"162":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.0},"59":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":21,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"76":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":10,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"187":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"75":{"tf":1.0},"90":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"k":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"7":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"8":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":36,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.0},"165":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"0":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"137":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"100":{"tf":1.0},"128":{"tf":1.0},"15":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"8":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":47,"docs":{"10":{"tf":3.0},"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":2.449489742783178},"11":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"12":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":2.0},"167":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":2.0},"9":{"tf":2.8284271247461903},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{":":{":":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"[":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":35,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":3.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"43":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":25,"docs":{"163":{"tf":2.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"178":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"142":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"120":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"74":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"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":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"178":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":50,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":2.23606797749979},"110":{"tf":2.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"21":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.0},"27":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"54":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":2.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"115":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":7,"docs":{"11":{"tf":1.0},"150":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"21":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":2.0},"80":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":2.8284271247461903},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"28":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"174":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"162":{"tf":1.0},"50":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"146":{"tf":1.0},"72":{"tf":1.0}}}},"df":11,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"173":{"tf":1.0},"72":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":2.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"a":{"d":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":2.0},"162":{"tf":1.4142135623730951},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"171":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":2.8284271247461903},"22":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"142":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"112":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"64":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":6,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"144":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"160":{"tf":1.4142135623730951},"54":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"38":{"tf":1.0}}},"h":{"df":3,"docs":{"146":{"tf":1.0},"161":{"tf":1.0},"84":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"115":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"df":30,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"135":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"21":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"123":{"tf":1.4142135623730951},"42":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"d":{"d":{"df":5,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"46":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"100":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":3,"docs":{"174":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":6,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.0},"44":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":32,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"124":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"78":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.0},"167":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"128":{"tf":1.0},"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"105":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":4.123105625617661},"135":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"1":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"162":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"123":{"tf":1.0},"42":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"167":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"119":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":36,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"74":{"tf":2.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"108":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"2":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":11,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"145":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"m":{"df":3,"docs":{"108":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"103":{"tf":1.4142135623730951},"145":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":14,"docs":{"108":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"38":{"tf":1.0},"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":2,"docs":{"119":{"tf":2.0},"57":{"tf":1.4142135623730951}}},"t":{"df":21,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"172":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"142":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"119":{"tf":1.0},"148":{"tf":1.0},"76":{"tf":2.23606797749979},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"8":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"145":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}}}},"y":{"df":2,"docs":{"21":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"144":{"tf":1.4142135623730951},"170":{"tf":1.0},"178":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"43":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"127":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.7320508075688772},"77":{"tf":1.0}},"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":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"41":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":1,"docs":{"113":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"2":{"4":{"df":0,"docs":{},"x":{"2":{"4":{"/":{"a":{"c":{"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":1,"docs":{"101":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"146":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":4,"docs":{"16":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"127":{"tf":1.0},"160":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"160":{"tf":1.0},"186":{"tf":1.0},"37":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"138":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":2,"docs":{"166":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"61":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"167":{"tf":1.0},"21":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":2.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"14":{"tf":1.0},"21":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":4,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.4142135623730951},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":2.8284271247461903},"126":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":3.0},"160":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":2.0},"90":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"0":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{"b":{"df":3,"docs":{"108":{"tf":3.3166247903554},"110":{"tf":3.3166247903554},"139":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"112":{"tf":1.0},"139":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"df":4,"docs":{"160":{"tf":1.0},"20":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"168":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"138":{"tf":1.0},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"n":{"d":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"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":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"105":{"tf":1.0},"12":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"46":{"tf":1.0}}},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"153":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"169":{"tf":1.0},"72":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":2.23606797749979},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"171":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"48":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"167":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":4,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"160":{"tf":2.8284271247461903},"162":{"tf":2.8284271247461903}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":35,"docs":{"113":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":2.0},"183":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"66":{"tf":1.0},"70":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"114":{"tf":1.0},"141":{"tf":1.0},"170":{"tf":1.4142135623730951},"187":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"15":{"tf":1.0}}}},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{":":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"4":{"'":{"df":3,"docs":{"144":{"tf":1.0},"165":{"tf":1.0},"39":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"185":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"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":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"(":{"&":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":7,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":48,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"a":{"d":{"d":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{".":{"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":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"162":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"0":{"tf":1.0},"137":{"tf":1.4142135623730951},"23":{"tf":1.0},"6":{"tf":1.4142135623730951},"93":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"19":{"tf":1.0},"21":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"v":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"24":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"180":{"tf":1.4142135623730951}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"173":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":6,"docs":{"120":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":1,"docs":{"162":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"4":{"tf":1.0}}},"y":{"]":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.7320508075688772},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"108":{"tf":3.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"87":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"101":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"148":{"tf":1.0},"170":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"27":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"167":{"tf":1.0},"178":{"tf":1.0}}},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":33,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"57":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":2.23606797749979}}}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"4":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"164":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"6":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}},"n":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":2.449489742783178},"137":{"tf":2.0},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"171":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}},"t":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":14,"docs":{"1":{"tf":1.7320508075688772},"103":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":16,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":3.1622776601683795},"110":{"tf":2.449489742783178},"46":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"72":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"16":{"tf":2.0},"26":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"60":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"93":{"tf":1.0}},"m":{"df":1,"docs":{"23":{"tf":1.0}}},"n":{"df":2,"docs":{"161":{"tf":1.0},"24":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"35":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"f":{".":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"4":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"1":{"2":{"df":1,"docs":{"162":{"tf":1.0}}},"df":1,"docs":{"162":{"tf":1.0}}},"4":{"df":1,"docs":{"162":{"tf":1.0}}},"5":{"df":1,"docs":{"162":{"tf":1.0}}},"6":{"df":1,"docs":{"162":{"tf":1.0}}},"7":{"df":1,"docs":{"162":{"tf":1.0}}},"8":{"df":1,"docs":{"162":{"tf":1.0}}},"9":{"df":1,"docs":{"162":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"1":{"0":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"1":{"1":{"df":1,"docs":{"162":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"3":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"1":{"5":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"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":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.0},"74":{"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":{},"o":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"89":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"y":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}},"s":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":3,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"145":{"tf":1.0},"162":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":2.8284271247461903},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":2.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"n":{"d":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"148":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.7320508075688772},"25":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":2.449489742783178},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":7,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"170":{"tf":1.0},"30":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":28,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":2.0},"116":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"170":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"21":{"tf":2.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.4142135623730951},"67":{"tf":1.0},"79":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"95":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":12,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"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":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"135":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"109":{"tf":2.0},"110":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"116":{"tf":2.0},"121":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":3.3166247903554},"160":{"tf":2.449489742783178},"162":{"tf":2.0},"174":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"84":{"tf":1.7320508075688772},"91":{"tf":1.0},"93":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"145":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":16,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"145":{"tf":1.0},"157":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"116":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"144":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":16,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"145":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"4":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"145":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":3.0},"110":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":2.23606797749979},"130":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"29":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"162":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":2.0},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"4":{"tf":1.0},"45":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"30":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":2.449489742783178},"125":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"52":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":1.0}},"n":{"df":2,"docs":{"128":{"tf":1.0},"137":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"108":{"tf":1.0},"126":{"tf":2.8284271247461903},"148":{"tf":1.7320508075688772},"149":{"tf":2.6457513110645907},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"187":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"127":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"i":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"155":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"157":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"103":{"tf":1.0},"94":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"153":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"0":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"74":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"k":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"_":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"162":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":1,"docs":{"101":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}},"i":{"df":6,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"176":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"23":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"145":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"d":{"df":2,"docs":{"119":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}},"t":{"df":19,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"106":{"tf":1.0},"138":{"tf":1.0},"23":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"35":{"tf":1.0}}}}}}},"i":{"c":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"d":{":":{":":{"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":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"2":{"0":{"2":{"1":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"96":{"tf":1.0}}},"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"12":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"177":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772}}}},"p":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"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":{"50":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":45,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"167":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"125":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"41":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"124":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}},"i":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.4142135623730951},"184":{"tf":1.0},"3":{"tf":1.7320508075688772}}}},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"44":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"183":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"53":{"tf":3.0},"59":{"tf":3.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"x":{"(":{"4":{"2":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"b":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":9,"docs":{"100":{"tf":2.0},"101":{"tf":2.0},"102":{"tf":1.0},"106":{"tf":2.449489742783178},"75":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"51":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"28":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"tf":1.0},"147":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":2.0},"40":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":2.449489742783178},"112":{"tf":2.6457513110645907},"113":{"tf":4.47213595499958},"114":{"tf":3.1622776601683795},"115":{"tf":2.449489742783178},"116":{"tf":3.0},"117":{"tf":3.4641016151377544},"118":{"tf":2.449489742783178},"129":{"tf":2.0},"46":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":2.449489742783178},"109":{"tf":2.0},"110":{"tf":2.8284271247461903},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":2.23606797749979}}}},"t":{"'":{"df":8,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"157":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"135":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":10,"docs":{"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"109":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"k":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"103":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}}}}}},"u":{"df":2,"docs":{"15":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":21,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"21":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":14,"docs":{"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"145":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"110":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"149":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"162":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":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":{"102":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"44":{"tf":1.0}}}},"p":{"df":6,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"144":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":3.3166247903554},"59":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"146":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.8284271247461903},"50":{"tf":1.7320508075688772},"51":{"tf":2.6457513110645907},"52":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"121":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":30,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"15":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"21":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"130":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"109":{"tf":1.0}}}}},"t":{"df":2,"docs":{"144":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"153":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}},"df":5,"docs":{"119":{"tf":1.0},"164":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"78":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":2.8284271247461903},"110":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"102":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":14,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":56,"docs":{"100":{"tf":2.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"162":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"185":{"tf":1.0},"21":{"tf":3.7416573867739413},"23":{"tf":2.0},"25":{"tf":2.8284271247461903},"27":{"tf":2.6457513110645907},"33":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"74":{"tf":2.8284271247461903},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0},"99":{"tf":2.0}}}}}},"u":{"6":{"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{")":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":3.1622776601683795},"177":{"tf":1.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"'":{"df":1,"docs":{"137":{"tf":1.0}}},"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"i":{"df":47,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"48":{"tf":3.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"38":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.0},"183":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"120":{"tf":1.0},"159":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"77":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"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":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"87":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":56,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"162":{"tf":1.7320508075688772},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":3.1622776601683795},"23":{"tf":2.6457513110645907},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":2.0},"37":{"tf":2.0},"48":{"tf":3.3166247903554},"49":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"160":{"tf":1.0},"162":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"{":{"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":0,"docs":{},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"109":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"128":{"tf":1.0}}}},"df":110,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":3.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"144":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":2.0},"162":{"tf":3.1622776601683795},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"108":{"tf":1.0}}},"df":15,"docs":{"108":{"tf":2.449489742783178},"110":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":2.0}}}},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"178":{"tf":1.0}}},"5":{"df":3,"docs":{"168":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"182":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"114":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":2.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.449489742783178},"160":{"tf":1.7320508075688772},"162":{"tf":2.8284271247461903},"19":{"tf":1.0},"20":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"1":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.7320508075688772},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"e":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"5":{"df":2,"docs":{"21":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"21":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":1,"docs":{"120":{"tf":1.0}},"e":{"c":{"!":{"[":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"121":{"tf":1.0}}}}},"u":{"8":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":4,"docs":{"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"160":{"tf":1.4142135623730951},"173":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"1":{".":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"a":{"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.0},"175":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}}}},"df":55,"docs":{"103":{"tf":2.0},"104":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"121":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":2.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":2.0},"57":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"!":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"31":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":5,"docs":{"103":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":5,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.0}}}},"b":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"135":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"157":{"tf":1.0},"162":{"tf":1.7320508075688772},"48":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"df":83,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"113":{"tf":2.23606797749979},"114":{"tf":2.0},"115":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.0},"12":{"tf":3.1622776601683795},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.8284271247461903},"142":{"tf":2.6457513110645907},"143":{"tf":2.23606797749979},"144":{"tf":2.23606797749979},"145":{"tf":3.605551275463989},"146":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":2.0},"157":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":3.0},"162":{"tf":2.23606797749979},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"21":{"tf":4.123105625617661},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"27":{"tf":2.6457513110645907},"29":{"tf":2.23606797749979},"31":{"tf":1.0},"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":3.1622776601683795},"45":{"tf":1.0},"48":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"77":{"tf":1.0},"84":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979},"93":{"tf":2.449489742783178},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"162":{"tf":1.0},"43":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"21":{"tf":1.0},"25":{"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":15,"docs":{"108":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":1.0},"124":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"25":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":2.8284271247461903},"110":{"tf":2.0},"144":{"tf":1.0},"166":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"164":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"103":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":40,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.7320508075688772},"121":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":2.0},"17":{"tf":1.0},"173":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"99":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"171":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":3.3166247903554}}}}},"l":{"d":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"142":{"tf":1.0},"174":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":4,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"174":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"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":15,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951}}}}}}},"x":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}}},"y":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":4,"docs":{"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"119":{"tf":1.0},"49":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"181":{"tf":1.0}}}}}}},"d":{"d":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":4,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.0},"45":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"103":{"tf":1.0},"97":{"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":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"133":{"tf":1.0}}}}}}},"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0}}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"107":{"tf":1.0},"142":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"100":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"36":{"tf":1.0},"39":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"d":{"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"136":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"96":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"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":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"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":1,"docs":{"117":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"185":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"153":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"103":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"56":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"122":{"tf":1.0},"42":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"i":{"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"160":{"tf":1.0},"21":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"171":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"119":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":10,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":5,"docs":{"56":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"152":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"180":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"155":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"105":{"tf":1.0},"122":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.0},"146":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"139":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"4":{"df":3,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"122":{"tf":1.0},"42":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"38":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"156":{"tf":1.0},"40":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"48":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":4,"docs":{"114":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"79":{"tf":1.0}}}},"v":{"0":{".":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"4":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}},"5":{"df":2,"docs":{"168":{"tf":1.0},"179":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"7":{"df":2,"docs":{"182":{"tf":1.0},"187":{"tf":1.0}}},"8":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"140":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"162":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":20,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"42":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file