$@
-
-lunr.min.js: lunr.js
- ${UGLIFYJS} --compress --mangle --comments < $< > $@
-
-%.json: build/%.json.template
- cat $< | sed "s/@VERSION/${VERSION}/" > $@
-
-size: lunr.min.js
- @gzip -c lunr.min.js | wc -c
-
-server:
- ${NODE} server.js ${SERVER_PORT}
-
-test: node_modules
- @./test/runner.sh ${TEST_PORT}
-
-docs: node_modules
- ${DOX} < lunr.js | ${DOX_TEMPLATE} -n lunr.js -r ${VERSION} > docs/index.html
-
-clean:
- rm -f lunr{.min,}.js
- rm *.json
- rm example/example_index.json
-
-reset:
- git checkout lunr.* *.json docs/index.html example/example_index.json
-
-example: lunr.min.js
- ${NODE} example/index_builder.js
-
-node_modules: package.json
- ${NPM} -s install
-
-.PHONY: test clean docs reset example
diff --git a/public/browse/lib/lunr.js/README.mdown b/public/browse/lib/lunr.js/README.mdown
deleted file mode 100644
index 5fcbb2794c..0000000000
--- a/public/browse/lib/lunr.js/README.mdown
+++ /dev/null
@@ -1,63 +0,0 @@
-# Lunr.js
-
-[![Build Status](https://travis-ci.org/olivernn/lunr.js.png?branch=master)](https://travis-ci.org/olivernn/lunr.js)
-
-A bit like Solr, but much smaller and not as bright.
-
-## Example
-
-A very simple search index can be created using the following:
-
-```javascript
-var idx = lunr(function () {
- this.field('title', { boost: 10 })
- this.field('body')
-})
-```
-
-Adding documents to be indexed is as simple as:
-
-```javascript
-var doc = {
- "title": "Twelfth-Night",
- "body": "If music be the food of love, play on: Give me excess of it…",
- "author": "William Shakespeare",
- "id": 1
-}
-idx.add(doc)
-```
-
-Then searching is as simple:
-
-```javascript
-idx.search("love")
-```
-
-This returns a list of matching documents with a score of how closely they match the search query:
-
-```javascript
-[{
- "ref": 1,
- "score": 0.87533
-}]
-```
-
-[API documentation](http://lunrjs.com/docs) is available, as well as a full working example.
-
-## Description
-
-Lunr.js is a small, full-text search library for use in the browser. It indexes JSON documents and provides a simple search interface for retrieving documents that best match text queries.
-
-## Why
-
-For web applications with all their data already sitting in the client, it makes sense to be able to search that data on the client too. It saves adding extra, compacted services on the server. A local search index will be quicker, there is no network overhead, and will remain available and useable even without a network connection.
-
-## Installation
-
-Simply include the lunr.js source file in the page that you want to use it. Lunr.js is supported in all modern browsers.
-
-Browsers that do not support ES5 will require a JavaScript shim for Lunr to work. You can either use [Augment.js](https://github.com/olivernn/augment.js), [ES5-Shim](https://github.com/kriskowal/es5-shim) or any library that patches old browsers to provide an ES5 compatible JavaScript environment.
-
-## Contributing
-
-See the [`CONTRIBUTING.mdown` file](CONTRIBUTING.mdown).
diff --git a/public/browse/lib/lunr.js/VERSION b/public/browse/lib/lunr.js/VERSION
deleted file mode 100644
index b49b25336d..0000000000
--- a/public/browse/lib/lunr.js/VERSION
+++ /dev/null
@@ -1 +0,0 @@
-0.5.6
diff --git a/public/browse/lib/lunr.js/bower.json b/public/browse/lib/lunr.js/bower.json
deleted file mode 100644
index b2e2b31d23..0000000000
--- a/public/browse/lib/lunr.js/bower.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "name": "lunr.js",
- "version": "0.5.6",
- "main": "lunr.js",
- "ignore": [
- "tests/",
- "perf/",
- "build/",
- "docs/"
- ]
-}
diff --git a/public/browse/lib/lunr.js/component.json b/public/browse/lib/lunr.js/component.json
deleted file mode 100644
index ef1a740477..0000000000
--- a/public/browse/lib/lunr.js/component.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "lunr",
- "repo": "olivernn/lunr.js",
- "version": "0.5.6",
- "description": "Simple full-text search in your browser.",
- "license": "MIT",
- "main": "lunr.js",
- "scripts": ["lunr.js"]
-}
diff --git a/public/browse/lib/lunr.js/example/app.js b/public/browse/lib/lunr.js/example/app.js
deleted file mode 100644
index 3a450b9975..0000000000
--- a/public/browse/lib/lunr.js/example/app.js
+++ /dev/null
@@ -1,89 +0,0 @@
-require([
- '/example/jquery.js',
- '/example/mustache.js',
- '../lunr.js',
- 'text!templates/question_view.mustache',
- 'text!templates/question_list.mustache',
- 'text!example_data.json',
- 'text!example_index.json'
-], function (_, Mustache, lunr, questionView, questionList, data, indexDump) {
-
- var renderQuestionList = function (qs) {
- $("#question-list-container")
- .empty()
- .append(Mustache.to_html(questionList, {questions: qs}))
- }
-
- var renderQuestionView = function (question) {
- $("#question-view-container")
- .empty()
- .append(Mustache.to_html(questionView, question))
- }
-
- window.profile = function (term) {
- console.profile('search')
- idx.search(term)
- console.profileEnd('search')
- }
-
- window.search = function (term) {
- console.time('search')
- idx.search(term)
- console.timeEnd('search')
- }
-
- var indexDump = JSON.parse(indexDump)
- console.time('load')
- window.idx = lunr.Index.load(indexDump)
- console.timeEnd('load')
-
- var questions = JSON.parse(data).questions.map(function (raw) {
- return {
- id: raw.question_id,
- title: raw.title,
- body: raw.body,
- tags: raw.tags.join(' ')
- }
- })
-
- renderQuestionList(questions)
- renderQuestionView(questions[0])
-
- $('a.all').bind('click', function () {
- renderQuestionList(questions)
- $('input').val('')
- })
-
- var debounce = function (fn) {
- var timeout
- return function () {
- var args = Array.prototype.slice.call(arguments),
- ctx = this
-
- clearTimeout(timeout)
- timeout = setTimeout(function () {
- fn.apply(ctx, args)
- }, 100)
- }
- }
-
- $('input').bind('keyup', debounce(function () {
- if ($(this).val() < 2) return
- var query = $(this).val()
- var results = idx.search(query).map(function (result) {
- return questions.filter(function (q) { return q.id === parseInt(result.ref, 10) })[0]
- })
-
- renderQuestionList(results)
- }))
-
- $("#question-list-container").delegate('li', 'click', function () {
- var li = $(this)
- var id = li.data('question-id')
-
- renderQuestionView(questions.filter(function (question) {
- return (question.id == id)
- })[0])
- })
-
-})
diff --git a/public/browse/lib/lunr.js/example/example_data.json b/public/browse/lib/lunr.js/example/example_data.json
deleted file mode 100644
index a052edb553..0000000000
--- a/public/browse/lib/lunr.js/example/example_data.json
+++ /dev/null
@@ -1,3016 +0,0 @@
-
-{
- "total": 105507,
- "page": 1,
- "pagesize": 100,
- "questions": [
- {
- "tags": [
- "javascript",
- "jquery",
- "html"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414827/timeline",
- "question_comments_url": "/questions/6414827/comments",
- "question_answers_url": "/questions/6414827/answers",
- "question_id": 6414827,
- "owner": {
- "user_id": 807067,
- "user_type": "unregistered",
- "display_name": "Barcino",
- "reputation": 1,
- "email_hash": "a4aec9f48b0281995da5b2223b3ac213"
- },
- "creation_date": 1308589530,
- "last_activity_date": 1308589530,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 6,
- "score": 0,
- "community_owned": false,
- "title": "Why does my checkbox return the wrong state?",
- "body": "I'm really confused. I have the following:
\n\n<input class=\"check-box\" \n id=\"Data__Correct\" \n name=\"Data.Correct\" \n type=\"checkbox\" value=\"Data.Correct\" />\n
\n\nWhen I put a check in the checkbox and check with fiddler I see it's sending back:
\n\nData.Correct False\n
\n\nI thought it should be the other way around. What's happening?
\n"
- },
- {
- "tags": [
- "php",
- "javascript",
- "jquery",
- "html",
- "div"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6414808,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6414614/timeline",
- "question_comments_url": "/questions/6414614/comments",
- "question_answers_url": "/questions/6414614/answers",
- "question_id": 6414614,
- "owner": {
- "user_id": 798662,
- "user_type": "registered",
- "display_name": "Eric",
- "reputation": 161,
- "email_hash": "25601fc3740f83926598cc89dc604e5f"
- },
- "creation_date": 1308588228,
- "last_edit_date": 1308589468,
- "last_activity_date": 1308589468,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 31,
- "score": 0,
- "community_owned": false,
- "title": "Fairly easy JQuery Input Selection location problem",
- "body": "I am having a problem with getting my JQuery javascript code to apply to the select box elements that it is supposed to. What's happening is that the select boxes are not following the actions that are specified in the javascript code. They are simply staying disabled and checked (see code below) instead of changing based on the first checkbox's selection.
\n\nI believe it is a problem regarding how I specify the location of the select boxes in the javascript code, but I don't know how to go about fixing it. Then again, I could be wrong about that too.
\n\nIf you have any insight on this or can correct the code, please do! Cheers.
\n\n \n\nHTML: \n\n<div class=\"medium_box\">\n <form name=\"searchform\" class=\"FECKsearch\" method=\"get\" onSubmit=\"return dosearch();\">\n <input name=\"s\" id=\"searchBox\" class=\"input\" type=\"text\" value=\"\" onfocus=\"myFocusHandler(this);\" onblur=\"myBlurHandler(this);\" size=\"18\" maxlength=\"50\">\n <input type=\"submit\" name=\"searchsubmit\" class=\"button\" value=\"Go\" />\n\n <span class=\"searcher\">International: <input type=\"checkbox\" id=\"International\" checked=\"yes\"></input></span>\n <span class=\"searcher1\">Americas: <input type=\"checkbox\" id=\"Americas\" disabled checked=\"yes\"></input></span>\n <span class=\"searcher1\">Europe: <input type=\"checkbox\" id=\"Europe\" disabled checked=\"yes\"></input></span>\n Asia: <input type=\"checkbox\" id=\"Asia\" disabled checked=\"yes\"></input>\n </form> \n</div>\n
\n\nJavascript: \n\n$('#International').click(function() {\nvar paramChangeBoxes = $('input:checkbox');\nif ($(this).is(':checked')) {\n $('#Americas').attr('checked', 'checked');\n $('#Americas').attr('disabled', 'disabled');\n $('#Europe').attr('checked', 'checked');\n $('#Europe').attr('disabled', 'disabled');\n $('#Asia').attr('checked', 'checked');\n $('#Asia').attr('disabled', 'disabled');\n}\nelse {\n paramChangeBoxes.removeAttr('disabled');\n $('#Americas').removeAttr('disabled');\n $('#Europe').removeAttr('disabled');\n $('#Asia').removeAttr('disabled');\n\n }\n});\n
\n\n \n\nUpdate & Solution: \n\nCheers to John for the code $('#International').live(\"click\",function() {
which corrected the error of the JQuery code not functioning. Apparently if you are importing the code from a remote file you must include the \"live\" portion inside of your coding.
\n\nThanks again John!
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "html",
- "file-upload"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "bounty_closes_date": 1308660760,
- "bounty_amount": 50,
- "question_timeline_url": "/questions/6296451/timeline",
- "question_comments_url": "/questions/6296451/comments",
- "question_answers_url": "/questions/6296451/answers",
- "question_id": 6296451,
- "owner": {
- "user_id": 393751,
- "user_type": "registered",
- "display_name": "ibhbuhbuhb",
- "reputation": 92,
- "email_hash": "2a06a2827b2baa70da6c7ac35acfcb5e"
- },
- "creation_date": 1307638388,
- "last_edit_date": 1308056144,
- "last_activity_date": 1308589363,
- "up_vote_count": 7,
- "down_vote_count": 0,
- "view_count": 212,
- "score": 7,
- "community_owned": false,
- "title": "problem in file upload",
- "body": "I have the following markup:
\n\n <select multiple=\"multiple\" id=\"targetFilesList\" style=\"width:200px;height:110px;\">\n </select>\n <input type=\"button\" value=\"Get\" id=\"btnGet\" />\n
\n\nand following javascript:
\n\n $(function()\n {\n $('#btnGet').click(function()\n {\n var fileupload = $(\"<input type='file' name='filetoupload' style='visibility:hidden;'/>\");\n $('body').append(fileupload);\n\n fileupload[0].onchange = function()\n {\n $('#targetFilesList').append('<option >' + fileupload.val() + '</option>');\n return false;\n }\n fileupload.click();\n });\n });\n
\n\nScenario is that i have to upload multiple files and once user has chosen the file to be uploaded i have to show the file name to user.Then,on submitting the form i will upload all the files.For this,on clicking the get button i am adding a fileupload control dynamically\nand initialise onchange event of the fileupload control just added. The problem in chrome 12 on clicking get button fileupload control does not get opened but in firefox4 and ie8 it is working.\nAny idea why?
\n"
- },
- {
- "tags": [
- "php",
- "javascript",
- "facebook",
- "twitter",
- "share"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414782/timeline",
- "question_comments_url": "/questions/6414782/comments",
- "question_answers_url": "/questions/6414782/answers",
- "question_id": 6414782,
- "owner": {
- "user_id": 807063,
- "user_type": "unregistered",
- "display_name": "ponens",
- "reputation": 6,
- "email_hash": "28f14a601696f114e84c5be712032c73"
- },
- "creation_date": 1308589336,
- "last_activity_date": 1308589336,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 3,
- "score": 1,
- "community_owned": false,
- "title": "Provide link/Redirect after a 'Like' or 'Share' on Facebook or a 'Share' on Twitter",
- "body": "basically what I want to do is forward people to a download link once they either 'like' my page on Facebook or post a link of the page to their profile (whatever is easier) and something similar for Twitter.
\n\nI have seen some bands do this when promoting a free download — to download the new song you must post this to your profile etc.
\n\nAnybody know how I could go about this? (This isn't a 'can you do it for me' question, I just need a point in the right direction regarding API's or any examples)
\n\nThanks.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 8,
- "accepted_answer_id": 6412781,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412607/timeline",
- "question_comments_url": "/questions/6412607/comments",
- "question_answers_url": "/questions/6412607/answers",
- "question_id": 6412607,
- "owner": {
- "user_id": 256439,
- "user_type": "registered",
- "display_name": "Sandra Schlichting",
- "reputation": 1327,
- "email_hash": "c4b17df9c9b2f33a96eb84f92054f708"
- },
- "creation_date": 1308579341,
- "last_edit_date": 1308586824,
- "last_activity_date": 1308589242,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 67,
- "score": 2,
- "community_owned": false,
- "title": "Passing argument to function. What's wrong?",
- "body": "In this jsFiddle
\n\nam I trying to pass an argument to a function, but it doesn't receive the argument or it isn't executed.
\n\n<a href=\"javascript:addRemove('7249');\">Details</a>\n
\n\nJQuery
\n\n$(document).ready(function() {\n\n function addRemove(u) {\n alert(u);\n }\n\n});\n
\n\nAny ideas what's wrong and how to fix it?
\n"
- },
- {
- "tags": [
- "c#",
- "javascript",
- "matlab"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414755/timeline",
- "question_comments_url": "/questions/6414755/comments",
- "question_answers_url": "/questions/6414755/answers",
- "question_id": 6414755,
- "owner": {
- "user_id": 662770,
- "user_type": "registered",
- "display_name": "shahar_m",
- "reputation": 291,
- "email_hash": "4590affff8ab7bda7cbc2a3d766f02bd"
- },
- "creation_date": 1308589121,
- "last_activity_date": 1308589121,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 9,
- "score": 1,
- "community_owned": false,
- "title": "Convert Matlab Fuzzy Logic toolbox fis file to c# / c++ / javascript",
- "body": "I have a Matlab program that is partially relies on Matlab's Fuzzy logic toolbox, which I want to convert to c# program (and later on to objective-c, but let's keep this for later).\nIs ther any means to convert my fuzzy logic fis file into c# (or c++, or maybe even javascript)?
\n\nP.S. I know the deploytool
can convert my program to exe, but I don't want to rely on matlab runtime
component and dlls but to make it a complete c# (or c++) program.
\n"
- },
- {
- "tags": [
- "javascript",
- "html5",
- "browser",
- "cross-browser"
- ],
- "answer_count": 2,
- "accepted_answer_id": 5560986,
- "favorite_count": 3,
- "question_timeline_url": "/questions/5306132/timeline",
- "question_comments_url": "/questions/5306132/comments",
- "question_answers_url": "/questions/5306132/answers",
- "question_id": 5306132,
- "owner": {
- "user_id": 471795,
- "user_type": "registered",
- "display_name": "kanaka",
- "reputation": 3994,
- "email_hash": "b2bd81c28bcafeea19ac72e554859ec0"
- },
- "creation_date": 1300148053,
- "last_edit_date": 1308589105,
- "last_activity_date": 1308589105,
- "up_vote_count": 6,
- "down_vote_count": 0,
- "view_count": 274,
- "score": 6,
- "community_owned": false,
- "title": "Translate Javascript keyCode into charCode for non-U.S. keyboard layout (i.e. azerty)",
- "body": "Quick background:
\n\n\nwhen a key is pressed in a browser, three events are generated: keyDown , keyPress and keyUp . \nkeyDown and keyUp have a keyCode property which is approximately the physical key pressed. \nkeyPress also has charCode property set which takes into account modifier keys and keyboard layout (A and a have same keyCode but a different charCode). \nall three events have properties that indicate which modifier keys were pressed during those events. \n \n\nI'm the main noVNC developer and I have a tough problem: noVNC needs the translated charCode value without using the keyPress event for the following reasons:
\n\n\nnoVNC needs to send the keyDown and keyUp events separately to the VNC server (otherwise it's not a completely functional VNC client). \nmore importantly, noVNC needs to prevent the default keyboard actions while connected which means calling the preventDefault() method of the keyDown event. This has the side-effect of also preventing the keyPress event from firing. \n \n\nDue to differences in keyboard layouts (i.e. different keyCode to charCode mappings) I've determine that noVNC will need a lookup table for different keyboard layouts.
\n\nBut here is the real problem: on alternate layouts, some different physical keys have the SAME keyCode. For example, with an azerty (French) keyboard layout the '-' (dash) and '_' underscore keys both generate keyCode 189. Ack!!!
\n\nSo ... how do I get proper keyCode to charCode mapping and prevent default browser actions at the same time?
\n\nBTW, I suspect the solution to this will be applicable to other interactive web applications and HTML5 games since you often want to be able to know full information about the key pressed without triggering any additional browser response to that keypress.
\n\nUseful links:
\n\n\n\nSolution : see my post below.
\n"
- },
- {
- "tags": [
- "javascript",
- "ruby-on-rails"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413951/timeline",
- "question_comments_url": "/questions/6413951/comments",
- "question_answers_url": "/questions/6413951/answers",
- "question_id": 6413951,
- "owner": {
- "user_id": 51382,
- "user_type": "registered",
- "display_name": "willcodejavaforfood",
- "reputation": 12699,
- "email_hash": "d5c948086776fc91b4c7abff56bb7672"
- },
- "creation_date": 1308584996,
- "last_activity_date": 1308588759,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 17,
- "score": 0,
- "community_owned": false,
- "title": "How do I update my model object before a create/update?",
- "body": "It's me the big rails newbie. I have another problem.
\n\nThis is my partial for _care_point.html.erb
\n\n<div id='<%=dom_id(care_point) %>' class='draggable node_chin'>\n <div id=<%=\"node_#{care_point.id}\" %> class='node'><%= care_point.body %>\n </div>\n <textarea class='node_input'><%= care_point.body %></textarea>\n <%= link_to 'Close', [care_map, care_point], :method => :post, :remote => true, :class => 'close' %>\n <%= link_to 'Delete', [care_map, care_point], :confirm => \"Are you sure?\", :method => :delete, :remote => true, :class => 'delete' %>\n</div>\n
\n\nWhen I click the Close link the request is sent to the server as expected. All the fields are null though. How do I make sure that my model object is kept updated before it is sent to the server? Do I have to use the form functionality or can I just update it with Javascript somehow?
\n\nCheers
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "ajax",
- "jquery-ajax"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414530/timeline",
- "question_comments_url": "/questions/6414530/comments",
- "question_answers_url": "/questions/6414530/answers",
- "question_id": 6414530,
- "owner": {
- "user_id": 484082,
- "user_type": "registered",
- "display_name": "blasteralfred",
- "reputation": 505,
- "email_hash": "cd867e89325fe74445707fb6b4364be8"
- },
- "creation_date": 1308587719,
- "last_edit_date": 1308588455,
- "last_activity_date": 1308588636,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 45,
- "score": 0,
- "community_owned": false,
- "title": "Change background using Javascript - AJAX - jQuery",
- "body": "I have a table as below;
\n\n<table style=\"width: 100%; border: solid 1px #666600; min-width: 800px\" cellpadding=\"0\" cellspacing=\"0\">\n<tr>\n<td id=\"aaa\"> </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td class=\"content\" > </td>\n<td id=\"bbb\"> </td>\n</tr>\n<tr>\n<td> </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td class=\"title\" > </td>\n<td> </td>\n</tr>\n</table>\n
\n\nI am using jquery ajax and i have script as below;
\n\n$(document).ready( function() {\nvar i = 1;\n$.ajax({\n type: 'POST',\n url: 'ajax.php',\n data: 'id=' + i,\n dataType: 'json',\n cache: false,\n success: function(result) {\n $('.title').each(function(index){\n values = result[index].split('*');\n indexa = values[0];\n indexb = values[1];\n if((result[index])){\n $(this).html(indexb);\n }else{\n $(this).html(\" \");\n }\n });\n },\n });\n});\n
\n\nThe php file will return [\"data1*abc\",\"data2*abc\",\"data3*abc\",\"data4*abc\",\"data5*abc\",\"data6*abc\"]
for i=1, [\"data7*abc\",\"data8*abc\",\"data9*abc\",\"data10*abc\",\"data11*abc\",\"data12*abc\"]
for i=2 etc etc.. The text in class=\"title\"
changes accordingly with respect to the data, as abc
or whatever it is..
\n\nYou can see another cell above every title cell having class=\"content\"
. I have a php file, ajax2.php
, which will return an image name with respect to a $_POST[\"data1\"]
and $_POST[\"data2\"]
. The $_POST[\"data1\"]
portion should have value indexa
and $_POST[\"data2\"]
portion should have value indexb
from javascript for each ajax request. The images are placed in images folder and the data returned by php file will be only image_name.extension
.
\n\nIn short, I want to change the background image of content cell above title cell to change when data / text in corresponding title cell changes. Anybody tell me how to do the AJAX request and change background image (change background image url).
\n\nI think it will be something like;
\n\n$(.content).css({ 'background-image':'url(images/' + imagename });
\n\nYou can see my fiddle here
\n\nThanks in advance..
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 3,
- "accepted_answer_id": 4047114,
- "favorite_count": 0,
- "question_timeline_url": "/questions/4047072/timeline",
- "question_comments_url": "/questions/4047072/comments",
- "question_answers_url": "/questions/4047072/answers",
- "question_id": 4047072,
- "owner": {
- "user_id": 457827,
- "user_type": "registered",
- "display_name": "Johnson",
- "reputation": 304,
- "email_hash": "1ce4f00aae1dbed39c2899dbd85e4169"
- },
- "creation_date": 1288299036,
- "last_activity_date": 1308588573,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 70,
- "score": 0,
- "community_owned": false,
- "title": "JS: setInterval and blur.",
- "body": "I have this:
\n\n$(window).blur(function() {\n setInterval(function() {\n $.ajax({\n type: \"POST\",\n url: \"imback.php\",\n data: {\n mode: 'ajax',\n getUpdates: 'auto',\n },\n success: function(msg){\n document.title = msg + titleOrig;\n }\n });\n }, 35000);\n
\n\nWorks fine.
\n\nAlthough, if you have been blur, and then when you focus back, it will keep making the ajax call, it doesnt stop sending ajax call after interval 35 seconds.
\n\nHow can i fix this?\n })
\n"
- },
- {
- "tags": [
- "javascript",
- "xml"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/4272538/timeline",
- "question_comments_url": "/questions/4272538/comments",
- "question_answers_url": "/questions/4272538/answers",
- "question_id": 4272538,
- "owner": {
- "user_id": 519506,
- "user_type": "unregistered",
- "display_name": "Erin",
- "reputation": 6,
- "email_hash": "dcc375d4184c9ce18bedc0db1391cb2f"
- },
- "creation_date": 1290641828,
- "last_edit_date": 1308588407,
- "last_activity_date": 1308588407,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 398,
- "score": 1,
- "community_owned": false,
- "title": "How can I parse XML in javascript in both IE and firefox?",
- "body": "I'm trying to write a single piece of code to parse javascript in both IE and firefox.
\n\nThe following works in IE, and functions without complaining in firefox
\n\nfunction XmlDom(sXml){\n var oXml;\n if (window.ActiveXObject) {\n // ie\n oXml = new ActiveXObject(\"Microsoft.XMLDOM\");\n oXml.resolveExternals = false;\n oXml.async = false;\n oXml.loadXML(sXml);\n }\n else if (window.DOMParser){\n\n var parser = new DOMParser(); \n oXml = parser.parseFromString(sXml, \"text/xml\");\n\n }\nreturn oXml\n}\n
\n\nThe following works in IE, but gives errors (because childNodes doesn't exist) under Firefox
\n\nvar oXml = XmlDom(sourceXML);\nvar listHtml = \"\";\nif (oXml.firstChild != null) {\n var childNodes = null;\n try {\n childNodes = oXml.lastChild.lastChild.firstChild.childNodes;\n }\n if (childNodes != null && childNodes.length > 0) {\n\n for (var i = 0; i < childNodes.length; i++) {\n\n var vehicleName = NodeText(SelectSingleNode(childNodes[i], 'VehicleName', 'VehicleName'));\n var vehicleId = NodeText(SelectSingleNode(childNodes[i], 'VehicleId', 'VehicleId'));\n\n }\n }\n}\n
\n\nUsing jquery gives me correct behavior under firefox, but doesn't quite work in IE (it finds the correct number of vehicles, but each one has a null id and name)
\n\n $(sourceXml).find(\"Table1\").each(function() {\n var vehicleId = $(this).find(\"VehicleId\").text();\n var vehicleName = $(this).find(\"VehicleName\").text();\n });\n
\n\nI firmly believe that both these approaches should work. But something is going wrong. I'd love a hand.
\n\n<?xml version=\"1.0\" encoding=\"utf-16\"?>\n<DataSet>\n <xs:schema id=\"NewDataSet\" xmlns=\"\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:msdata=\"urn:schemas-microsoft-com:xml-msdata\" xmlns:msprop=\"urn:schemas-microsoft-com:xml-msprop\">\n <xs:element name=\"NewDataSet\" msdata:IsDataSet=\"true\" msdata:UseCurrentLocale=\"true\">\n <xs:complexType>\n <xs:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n <xs:element name=\"Table1\">\n <xs:complexType>\n <xs:sequence>\n <xs:element name=\"VehicleId\" msprop:metadatacolumnname=\"VehicleId\" msprop:caption=\"VehicleId\" type=\"xs:string\" minOccurs=\"0\" />\n <xs:element name=\"VehicleName\" msprop:metadatacolumnname=\"VehicleName\" msprop:caption=\"VehicleName\" type=\"xs:string\" minOccurs=\"0\" />\n <xs:element name=\"SendAlarms\" msprop:metadatacolumnname=\"SendAlarms\" msprop:caption=\"SendAlarms\" type=\"xs:string\" minOccurs=\"0\" />\n </xs:sequence>\n </xs:complexType>\n </xs:element>\n </xs:choice>\n </xs:complexType>\n </xs:element>\n </xs:schema>\n <diffgr:diffgram xmlns:msdata=\"urn:schemas-microsoft-com:xml-msdata\" xmlns:diffgr=\"urn:schemas-microsoft-com:xml-diffgram-v1\">\n<NewDataSet>\n <Table1 diffgr:id=\"Table11\" msdata:rowOrder=\"0\" diffgr:hasChanges=\"inserted\">\n <VehicleId>8</VehicleId>\n <VehicleName>AIS Gate</VehicleName>\n <SendAlarms>False</SendAlarms>\n </Table1>\n <Table1 diffgr:id=\"Table12\" msdata:rowOrder=\"1\" diffgr:hasChanges=\"inserted\">\n <VehicleId>82</VehicleId>\n <VehicleName>Amigos</VehicleName>\n <SendAlarms>False</SendAlarms>\n </Table1> \n</NewDataSet>\n</diffgr:diffgram>\n</DataSet>\n
\n"
- },
- {
- "tags": [
- "javascript",
- "json",
- "apple",
- "dashcode"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414613/timeline",
- "question_comments_url": "/questions/6414613/comments",
- "question_answers_url": "/questions/6414613/answers",
- "question_id": 6414613,
- "owner": {
- "user_id": 706742,
- "user_type": "registered",
- "display_name": "Nero F. RoxXx",
- "reputation": 8,
- "email_hash": "bc2da610ac397822eeb3405b7718a9d9"
- },
- "creation_date": 1308588222,
- "last_activity_date": 1308588222,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 2,
- "score": 0,
- "community_owned": false,
- "title": "Using Dashcode's List Controller without their DataSource option",
- "body": "I'm working on my own custom google calendar, so far i'm able to get everything to work, i've loaded all the data and everything works great, each event shows up on a select box.
\n\nWhat i want to do now is to load each event name on the LIST part. How exactly can i do that? i'm very lost with it.
\n\nI looked at the sample code that dashcode has for the list part but i really am lost with populating the list in real time, can somebody help me? i can provide more info as needed, thanks!
\n"
- },
- {
- "tags": [
- "javascript",
- "google-maps",
- "marker"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413244/timeline",
- "question_comments_url": "/questions/6413244/comments",
- "question_answers_url": "/questions/6413244/answers",
- "question_id": 6413244,
- "owner": {
- "user_id": 365251,
- "user_type": "registered",
- "display_name": "markzzz",
- "reputation": 1345,
- "email_hash": "586ed1e5c3543cf7c304861c1240efdf"
- },
- "creation_date": 1308581995,
- "last_edit_date": 1308583496,
- "last_activity_date": 1308588085,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 16,
- "score": 0,
- "community_owned": false,
- "title": "How to set the google-maps marker as it is showed on the original website",
- "body": "Try to Search the first address on google maps, and click on it :
\n\nit will show us a marker with a photo (if avaiable), description, and some links.\nI'd like to add the same marker in my web application.
\n\nWhich API I need to use? At the moment I just make my own string and append it :
\n\nvar finestra='';\nfinestra += '<div style=\"position:relative;width:200px;\">';\nfinestra += '<div style=\"position:relative;float:left; color:#000000;\" class=canale>';\nfinestra += 'Archimede<br />Via Brennero,12<br />38100 Trento(TN)<br />c.+39 555555555';\nfinestra += '</div>';\nfinestra += '</div>';\n\nvar marker = createMarker(map.getCenter());\nmap.setCenter(new GLatLng(46.084989,11.118851), 16, G_NORMAL_MAP);\nmap.addOverlay(marker);\nmarker.openInfoWindowHtml(finestra); \n
\n\nBut I need the same marker as google maps show on the original website.\nIs it possible?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "internet",
- "internet-explorer-9",
- "explorer"
- ],
- "answer_count": 0,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6414578/timeline",
- "question_comments_url": "/questions/6414578/comments",
- "question_answers_url": "/questions/6414578/answers",
- "question_id": 6414578,
- "owner": {
- "user_id": 807033,
- "user_type": "unregistered",
- "display_name": "Mario",
- "reputation": 1,
- "email_hash": "15116221263b5450dd8abff3cc7a8ea9"
- },
- "creation_date": 1308588053,
- "last_activity_date": 1308588053,
- "up_vote_count": 0,
- "down_vote_count": 1,
- "view_count": 14,
- "score": -1,
- "community_owned": false,
- "title": "Javascript slider not showing in IE9",
- "body": "We have an automatic slider on this website, http://www.realcapfinancial.com and it has been working on all browsers. IE9 doesnt seem to work. It comes up with and error, no object line 298... character 2 etc. I forget what it says but I can't check it again since I'm at work using a mac.
\n\nAny help is perfect, thank you
\n"
- },
- {
- "tags": [
- "javascript",
- "node.js",
- "socket.io",
- "nowjs"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6409944/timeline",
- "question_comments_url": "/questions/6409944/comments",
- "question_answers_url": "/questions/6409944/answers",
- "question_id": 6409944,
- "owner": {
- "user_id": 578963,
- "user_type": "registered",
- "display_name": "DasAntonym",
- "reputation": 53,
- "email_hash": "90d33a04aa3d2ba5230831650d449714"
- },
- "creation_date": 1308566372,
- "last_activity_date": 1308588014,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 21,
- "score": 0,
- "community_owned": false,
- "title": "NowJS manually initiating a new connection after a lost connection",
- "body": "i have a case where clients connect to a node.js server running nowjs and remain connected for a fairly long time (about 30 minutes). on some browsers though the connection gets dropped after a while and the client disconnects.
\n\ni implemented a disconnect handler on the client side like this:
\n\nnow.core.on('disconnect', function () {\n // we should reconnect here, maybe after a short timeout\n});\n
\n\nwhat i am unclear about is how exactly to trigger a reconnect. this might be something blatantly obvious to experienced users but i didn't manage to figure this out.
\n\nthe now.js script initializes on page load and after that i can use the now object, but i can't figure out how to repeat this process without reloading the page.
\n\nthanks!
\n"
- },
- {
- "tags": [
- "javascript",
- "regex",
- "comma"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413444/timeline",
- "question_comments_url": "/questions/6413444/comments",
- "question_answers_url": "/questions/6413444/answers",
- "question_id": 6413444,
- "owner": {
- "user_id": 806905,
- "user_type": "unregistered",
- "display_name": "Frederick Thompson",
- "reputation": 11,
- "email_hash": "5698d4707354e0b9e4ba6f22a0be84d8"
- },
- "creation_date": 1308582827,
- "last_edit_date": 1308586491,
- "last_activity_date": 1308587996,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 61,
- "score": 2,
- "community_owned": false,
- "title": "Regex Comma Separated Emails",
- "body": "I am trying to get this Regex statement to work
\n\n^([_a-z0-9-]+(\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*(\\.[a-z]{2,3})+(\\s?[,]\\s?|$))+$
\n\nfor a string of comma separated emails in a textbox
using jQuery('#textbox').val();
which passes the values into the Regex statement to find errors for a string like:
\n\n\"test@test.com, test1@test.com,test2@test.com\"
\n\nBut for some reason it is returning an error. I tried running it through http://regexpal.com/ but i'm unsure ?
\n\nNB: This is just a basic client-side test. I validate emails via the MailClass
on the server-side using .NET4.0 - so don't jump down my throat re-this. The aim here is to eliminate simple errors.
\n\nEscaped Version:
\n\n^([_a-z0-9-]+(\\\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\\\.[a-z0-9-]+)*(\\\\.[a-z]{2,3})+(\\\\s?[,]\\\\s?|$))+$
\n"
- },
- {
- "tags": [
- "javascript",
- "javascript-library"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414240/timeline",
- "question_comments_url": "/questions/6414240/comments",
- "question_answers_url": "/questions/6414240/answers",
- "question_id": 6414240,
- "owner": {
- "user_id": 806937,
- "user_type": "unregistered",
- "display_name": "simplified.",
- "reputation": 1,
- "email_hash": "e30b781f0306f0b46f32b17733b8398d"
- },
- "creation_date": 1308586242,
- "last_edit_date": 1308586843,
- "last_activity_date": 1308587979,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 35,
- "score": 0,
- "community_owned": false,
- "title": "Constant Variables in Javascript",
- "body": "I am trying to have some const global variables which I can use in the javascript and I came out with this code and picking up from some answers referred in SO. But it seems that I have a little mistake somewhere which I couldn't spot. Can someone help me with this?
\n\nin testQuery.js
\n\n(function (window, undefined) {\n\n var testQuery = function(obj) {\n if (!(this instanceof testQuery)) {\n return new testQuery(obj);\n }\n }\n\n var MYGLOBALS = function() {\n var globals = {\n foo : \"bar\",\n batz : \"blah\" \n }\n\n return {\n getValue : function(s) {\n return globals[s];\n }\n }\n }();\n\n window.testQuery = testQuery;\n\n}) (window);\n
\n\n \n\nand in the html javascript tag i have this line of code.
\n\nin testQuery.html file
\n\n<html>\n <head>\n <script src=\"testQuery.js\"></script>\n <script>\n\n function onClick() {\n\n alert(MYGLOBALS.getValue(\"foo\"));\n }\n\n </script>\n </head>\n\n <body>\n\n <input type=\"button\" onclick=\"onClick()\">\n\n </body>\n\n</html>\n
\n"
- },
- {
- "tags": [
- "javascript",
- "internet-explorer-8",
- "frame",
- "hang",
- "google-chrome-frame"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414558/timeline",
- "question_comments_url": "/questions/6414558/comments",
- "question_answers_url": "/questions/6414558/answers",
- "question_id": 6414558,
- "owner": {
- "user_id": 467240,
- "user_type": "registered",
- "display_name": "mtyson",
- "reputation": 40,
- "email_hash": "acd22ce8d834f8548c4200bec5fe6c40"
- },
- "creation_date": 1308587934,
- "last_activity_date": 1308587934,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 5,
- "score": 0,
- "community_owned": false,
- "title": "In IE8 with Chrome Frame, after Download, App hangs",
- "body": "Here's a strange one. Throwing it out there to see if anyone has any thoughts.
\n\nThis problem only occurs with IE8 with Chrome Frame installed. However, some machines with IE8 and chrome frame do not have the problem.
\n\nWhen a user downloads a file, the app stops responding (the file is successfully downloaded). Links still work, but all JS appears to be blocked. If the user re-loads the browser, the app works fine, and re-downloading (even the same file) no longer causes the app to hang.
\n\nI should add that only a small number of users have this issue (so its definitely something in the app causing the problem). The problem seems to require: certain user, certain setup with IE8+chrome frame.
\n"
- },
- {
- "tags": [
- "java",
- "javascript",
- "xml",
- "regex",
- "parsing"
- ],
- "answer_count": 5,
- "accepted_answer_id": 3047464,
- "favorite_count": 0,
- "question_timeline_url": "/questions/3047391/timeline",
- "question_comments_url": "/questions/3047391/comments",
- "question_answers_url": "/questions/3047391/answers",
- "question_id": 3047391,
- "owner": {
- "user_id": 107721,
- "user_type": "registered",
- "display_name": "wojtek_z",
- "reputation": 20,
- "email_hash": "45e2bb34105769aaae7dbf841b37da84"
- },
- "creation_date": 1276621727,
- "last_activity_date": 1308587918,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 225,
- "score": 0,
- "community_owned": false,
- "title": "Parsing complex string using regex",
- "body": "My regex skills are not very good and recently a new data element has thrown my parser into a loop
\n\nTake the following string
\n\n\"+USER=Bob Smith-GROUP=Admin+FUNCTION=Read/FUNCTION=Write\"
\n\nPreviously I had the following for my regex : [+\\\\-/]
\n\nWhich would turn the result into
\n\nUSER=Bob Smith \nGROUP=Admin \nFUNCTION=Read \nFUNCTION=Write \nFUNCTION=Read
\n\nBut now I have values with dashes in them which is causing bad output
\n\nNew string looks like \"+USER=Bob Smith-GROUP=Admin+FUNCTION=Read/FUNCTION=Write/FUNCTION=Read-Write\"
\n\nWhich gives me the following result , and breaks the key = value structure.
\n\nUSER=Bob Smith \nGROUP=Admin \nFUNCTION=Read \nFUNCTION=Write \nFUNCTION=Read \nWrite
\n\nCan someone help me formulate a valid regex for handling this or point me to some key / value examples. Basically I need to be able to handle + - / signs in order to get combinations.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "jquery-plugins",
- "jqplot",
- "time-format"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414438/timeline",
- "question_comments_url": "/questions/6414438/comments",
- "question_answers_url": "/questions/6414438/answers",
- "question_id": 6414438,
- "owner": {
- "user_id": 576364,
- "user_type": "registered",
- "display_name": "mcbobo",
- "reputation": 3,
- "email_hash": "7c269209b6935ebf04de6171e6da80a5"
- },
- "creation_date": 1308587186,
- "last_edit_date": 1308587719,
- "last_activity_date": 1308587719,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 12,
- "score": 0,
- "community_owned": false,
- "title": "jQuery jqPlot library 12 hour Time Y-Axis Inversion issue",
- "body": "I've started using jqPlot recently. The generated graphs look amazing and I love it. There are a few little things to learn here and there, but overall it's great.
\n\nI'm using the stacked bar generation and came into a werid issue. Basically, I want a 12 hour time from hours 0 - 24 on the Y axis, days on the X axis, and plot seconds of a certain activity on the graph. But also, I want the days (midnight) to start at the top of the graph, and come to the bottom.
\n\nI can flip the data easily with an inverse of the 'min' and 'max', but the issue arises when I try to flip the ticks; essentially, the \"time\".
\n\nI have my series defaults set to a hidden axis:
\n\nseriesDefaults: {\n renderer: $.jqplot.BarRenderer,\n yaxis: 'y2axis'\n},\n
\n\nAnd I put a placeholder series ( with the values all 0's, eg: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] ) to associate with a separate yaxis to plot the date ticks:
\n\nseries: [\n { show: true, yaxis: 'yaxis', }\n],\n
\n\nI can flip the values by changing the min and max on the default y axis and hiding it:
\n\ny2axis:{\n min: 24,\n max: 0,\n showTicks: false\n}\n
\n\nThen I set the ticks, and format them with the DateAxisRenderer:
\n\nyaxis:{\n renderer:$.jqplot.DateAxisRenderer,\n ticks: ['0', '2', '4', '6', '8', '10', '12', '14', '16', '18', '20', '22', '24'],\n tickOptions: { formatString: '%I:%M %p' }\n}\n
\n\nThis creates a yaxis with the time's from 12:00 AM to 12:00PM back to 12:00 AM in that format. but in increasing order from the bottom of the graph.
\n\nObviously, flipping the min and max on the 'yaxis' would accomplish nothing, as there is only place holder values, and it only flips the values. How would I go about to flip the axis values so that the time goes (from the bottom) 24, 22, 20... etc, etc, ?
\n\nThanks for your help in advance.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "firefox"
- ],
- "answer_count": 6,
- "accepted_answer_id": 6414466,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414376/timeline",
- "question_comments_url": "/questions/6414376/comments",
- "question_answers_url": "/questions/6414376/answers",
- "question_id": 6414376,
- "owner": {
- "user_id": 533617,
- "user_type": "unregistered",
- "display_name": "David19801",
- "reputation": 822,
- "email_hash": "cba0529762ef11ebc58637b537a42acd"
- },
- "creation_date": 1308586914,
- "last_activity_date": 1308587629,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 24,
- "score": 0,
- "community_owned": false,
- "title": "Can I see what jquery is sending to an external server?",
- "body": "I am on a website...it has jquery and is sending some requests using javascript out to a php page.
\n\nIs their any way to see what data it is sending out from my computer and/or which URLs it is talking to?
\n\nI am using firefox and can load software if their is any needed.
\n\nEDIT - I have downloaded firebug and have the page loaded. Any idea what option I need to select?
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "text-editor",
- "textwrapping"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414473/timeline",
- "question_comments_url": "/questions/6414473/comments",
- "question_answers_url": "/questions/6414473/answers",
- "question_id": 6414473,
- "owner": {
- "user_id": 807019,
- "user_type": "unregistered",
- "display_name": "neutreno",
- "reputation": 1,
- "email_hash": "86e6ff8f75f9daef42d53b7f8002fd95"
- },
- "creation_date": 1308587382,
- "last_activity_date": 1308587609,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 17,
- "score": 0,
- "community_owned": false,
- "title": "How to cause live text wrap while image/element is being dragged, in javascript?",
- "body": "I want to make a text editor which incorporates this sort of effect (see video). However, I have no idea how this would be possible with javascript.
\n\nhttp://www.youtube.com/watch?v=mYnj4Mz9g9g
\n\nAny ideas would be amazing!
\n\nThanks
\n"
- },
- {
- "tags": [
- "javascript",
- "javascript-events"
- ],
- "answer_count": 4,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414123/timeline",
- "question_comments_url": "/questions/6414123/comments",
- "question_answers_url": "/questions/6414123/answers",
- "question_id": 6414123,
- "owner": {
- "user_id": 540394,
- "user_type": "registered",
- "display_name": "jurchiks",
- "reputation": 50,
- "email_hash": "b12346cb9e2e217ae6741e6af3ee6852"
- },
- "creation_date": 1308585694,
- "last_edit_date": 1308585896,
- "last_activity_date": 1308587324,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 27,
- "score": 0,
- "community_owned": false,
- "title": "javascript trigger function on event from a script, not explicitly from html",
- "body": "So I'm making a registration form ATM, I have it like I want it so far except the excess JavaScript code to check the values realtime (onmouseover, onmouseout, onblur etc.). \nA small sample:
\n\n<tr>\n <td>\n <label for=\"name\"\n onmouseover=\"fieldSelected('name', '', 3);\"\n onmouseout=\"checkValue('name', '', 3);\">\n Enter your name:\n </label>\n </td>\n <td>\n <input type=\"text\"\n id=\"name\"\n name=\"name\"\n onmouseover=\"fieldSelected('name', '', 3);\"\n onmouseout=\"checkValue('name', '', 3);\"\n onblur=\"checkValue('name', '', 3);\">\n </td>\n</tr>\n
\n\nfieldSelected makes the field background yellow if the value of the specified element (first parameter) matches the second parameter (default value) or is shorter than third parameter. \nYou mouseover the label or the input field and it changes the bg first to yellow, then to red (since you didn't input anything). \ncheckValue changes the field background to either red or green depending on the value (same parameters). \nYou enter something in the input field, switch to another field and it changes the background color.
\n\nNow, as you will probably notice, there's a LOT of JavaScript function calls right there (5 per each input/select field). It would be great if someone would know a way to attach those event triggers from another place (I don't usually code this dirty), not directly in the form like this and preferably to multiple IDs at once. I have jQuery here, but I'm really no expert in JavaScript.
\n\nOr maybe there's a simpler way to do this? I want that the field background color changes on all those events for maximum interactivity. Sure, it's nothing much when all the data goes to the server side but I just want it that way.
\n"
- },
- {
- "tags": [
- "javascript",
- "google-maps"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414093/timeline",
- "question_comments_url": "/questions/6414093/comments",
- "question_answers_url": "/questions/6414093/answers",
- "question_id": 6414093,
- "owner": {
- "user_id": 365251,
- "user_type": "registered",
- "display_name": "markzzz",
- "reputation": 1345,
- "email_hash": "586ed1e5c3543cf7c304861c1240efdf"
- },
- "creation_date": 1308585621,
- "last_edit_date": 1308586479,
- "last_activity_date": 1308587198,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 19,
- "score": 0,
- "community_owned": false,
- "title": "Why isn't this google maps loaded?",
- "body": "This is my code :
\n\n<script type=\"text/javascript\" src=\"http://maps.google.com/maps/api/js?sensor=true\"></script> \n<script type=\"text/javascript\">\n function load() {\n if (GBrowserIsCompatible()) {\n var map;\n var location = new google.maps.LatLng(46.084989, 11.118851);\n\n var stylez =\n [\n {\n featureType: \"all\",\n elementType: \"all\",\n stylers: [\n { saturation: -98 }\n ]\n }\n ];\n\n var mapOptions = {\n zoom: 11,\n center: location,\n mapTypeControlOptions: {\n mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'myScale']\n }\n };\n\n map = new google.maps.Map(document.getElementById(\"map_canvas\"), mapOptions);\n var mapType = new google.maps.StyledMapType(stylez, { name: \"Grayscale\" });\n map.mapTypes.set('myScale', mapType);\n map.setMapTypeId('myScale') \n }\n }\n\n $(document).ready(function(){\n load();\n });\n</script>\n\n\n<div id=\"map_canvas\" style=\"width: 100%; height: 700px\"></div>\n
\n\nbut nothing is loaded. Where am I wrong? Removing GBrowserIsCompatible() it works, but it doesn't recognize the location.
\n"
- },
- {
- "tags": [
- "php",
- "javascript"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6413910,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413881/timeline",
- "question_comments_url": "/questions/6413881/comments",
- "question_answers_url": "/questions/6413881/answers",
- "question_id": 6413881,
- "owner": {
- "user_id": 734174,
- "user_type": "unregistered",
- "display_name": "Michael",
- "reputation": 41,
- "email_hash": "5f8a354d18429fa4d502de0b18ddaa5b"
- },
- "creation_date": 1308584712,
- "last_activity_date": 1308587057,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 29,
- "score": 0,
- "community_owned": false,
- "title": "Setting a maximum and minimum value for text box",
- "body": "I own a canvas website and want my customers to be able to enter a custom length of the canvas within a set range.
\n\nSay the range for the product is:
\n\n\nMinimum: 10 cm \nMaximum: 200 cm \n \n\nThen in the text box they can enter any number between that range, but if they enter \"215\" then it should automatically go down to \"200\". Likewise if they enter \"7\" then it should automatically go up to \"10\"
\n"
- },
- {
- "tags": [
- "javascript",
- "xmlhttprequest",
- "google-weather-api"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413908/timeline",
- "question_comments_url": "/questions/6413908/comments",
- "question_answers_url": "/questions/6413908/answers",
- "question_id": 6413908,
- "owner": {
- "user_id": 766182,
- "user_type": "registered",
- "display_name": "user766182",
- "reputation": 6,
- "email_hash": "3e412d974a909f07ac9382b2d46cdf80"
- },
- "creation_date": 1308584819,
- "last_edit_date": 1308584942,
- "last_activity_date": 1308587049,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "Simple XMLHttpRequest (Google Weather)",
- "body": "Hello I want to get xml from Google Weather
\n\nvar xmlhttp;\n\nif (window.XMLHttpRequest)\n {// code for IE7+, Firefox, Chrome, Opera, Safari\n xmlhttp= new XMLHttpRequest();\n }\nelse\n {// code for IE6, IE5\n xmlhttp=new ActiveXObject(\"Microsoft.XMLHTTP\");\n }\n\n xmlhttp.open(\"GET\", \"http://www.google.com/ig/api?weather=london&hl=en\", true);\n\nxmlhttp.send(null);\n\nxmlDoc=xmlhttp.responseXML;\n
\n\nIt`s not working . Thanks
\n"
- },
- {
- "tags": [
- "javascript",
- "forms",
- "html5",
- "autocomplete",
- "localstorage"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/5351143/timeline",
- "question_comments_url": "/questions/5351143/comments",
- "question_answers_url": "/questions/5351143/answers",
- "question_id": 5351143,
- "owner": {
- "user_id": 665929,
- "user_type": "unregistered",
- "display_name": "prabhat",
- "reputation": 1,
- "email_hash": "5de923d527dc4cd4cacbafb74d4c5d18"
- },
- "creation_date": 1300446824,
- "last_edit_date": 1308586981,
- "last_activity_date": 1308586981,
- "up_vote_count": 0,
- "down_vote_count": 2,
- "view_count": 286,
- "score": -2,
- "community_owned": false,
- "title": "how to create autocomplete forum using html5 local storage?",
- "body": "Hi to all, I am new to programming. will you help me to write code for autocomplete text fields in a html form. I want to use local storage data.\nIf any time user will inter some data in text field, it will be stored in local storage. if next time when he enters data then, localstorage data related to that field will appear as popup(like mozila or chrome autocomplete).
\n\nplease provide me some guidelines
\n"
- },
- {
- "tags": [
- "javascript",
- "firefox",
- "browser"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413732/timeline",
- "question_comments_url": "/questions/6413732/comments",
- "question_answers_url": "/questions/6413732/answers",
- "question_id": 6413732,
- "owner": {
- "user_id": 806937,
- "user_type": "unregistered",
- "display_name": "simplified.",
- "reputation": 1,
- "email_hash": "e30b781f0306f0b46f32b17733b8398d"
- },
- "creation_date": 1308584011,
- "last_edit_date": 1308586969,
- "last_activity_date": 1308586969,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 46,
- "score": 0,
- "community_owned": false,
- "title": "Why won't this web page finish loading?",
- "body": "If I run this code, why doesn't the page ever finish loading? It will always show connecting on my browser tab.
\n\nIt is a simple javascript which will prompt an alert box and change the entire document to the word testing.
\n\nJavascript - testQuery.js
\n\n(function (window, undefined) {\n\nvar testQuery = function(obj) {\n if (!(this instanceof testQuery)) {\n return new testQuery(obj);\n }\n}\n\n\ntestQuery.alertMessage = function () {\n alert(\"alert\");\n document.write(\"testing\");\n};\n\n window.testQuery = testQuery;\n\n}) (window);\n
\n\nHTML - testQuery.html
\n\n<html>\n<head>\n\n<script src=\"testQuery.js\"></script>\n<script>\n\nfunction onClick() {\n\ntestQuery.alertMessage();\n\n}\n\n</script>\n</head>\n
\n\n
\n\n
\n\n\n
\n"
- },
- {
- "tags": [
- "javascript",
- "asp.net"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412632/timeline",
- "question_comments_url": "/questions/6412632/comments",
- "question_answers_url": "/questions/6412632/answers",
- "question_id": 6412632,
- "owner": {
- "user_id": 806682,
- "user_type": "registered",
- "display_name": "Peter Santos",
- "reputation": 6,
- "email_hash": "a2fe3b7599ef15af835ce803d5244f8e"
- },
- "creation_date": 1308579446,
- "last_edit_date": 1308586779,
- "last_activity_date": 1308586779,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 40,
- "score": 1,
- "community_owned": false,
- "title": "How to find and modify an asp.net control with JavaScript?",
- "body": "This has been bothering me for quite some time. I'm simply trying to change the value of a textbox defined in asp.net, which normally works when it is not within a LoggedInTemplate.
\n\nI've searched everywhere on the net and even here, but the only thing I can find close to doing what I need is here Finding an asp:button and asp:textbox in Javascript . Unfortunately that doesn't work. Here's what I have so far:
\n\n<head id=\"Head1\" runat=\"server\">\n <script src=\"../../scripts/webeffects.js\" type=\"text/javascript\" language=\"javascript\"></script>\n</head>\n<asp:LoginView ID=\"LoginView1\" runat=\"server\">\n <LoggedInTemplate>\n <div class=\"lotto_pick_container\">\n <table runat=\"server\" id=\"tblLottoPick\">\n <tr><th colspan=\"3\">Pick a Lotto Number</th></tr>\n <tr>\n <td><asp:TextBox ID=\"txt1stNum\" runat=\"server\"></asp:TextBox></td>\n <td><asp:TextBox ID=\"txt2ndNum\" runat=\"server\"></asp:TextBox></td>\n <td><asp:TextBox ID=\"txt3rdNum\" runat=\"server\"></asp:TextBox></td>\n </tr>\n <tr>\n <td><asp:Button ID=\"cmdSubmitPick\" runat=\"server\" Text=\"Submit Lotto Number\" \n onclientclick=\"return validateLottoPicks()\" /></td>\n </tr>\n</table>\n </div>\n </LoggedInTemplate>\n</asp:LoginView>\n
\n\nRight now I'm trying to use an external js script to find a textbox and modify it with an arbitrary value of 12, just so that I know it can work:
\n\nfunction validateLottoPicks() {\n document.getElementById('<%= LoginView1.FindControl(\"txt2ndNum\").ClientID %>').value = 12\n}\n
\n\nWhen I debug this with Firebug it seems all my other code works, except for this one function. I have verified the function gets called, it's just this line that doesn't work. Can someone please provide some guidance? I'll send milk and cookies.
\n\nUpdate:
\n\nThanks for all the help so far! I got some pretty quick responses.\n \n I removed the visible=\"false\" portion of the html, but no luck.\n I also tried using tblLottoPick.FindControl , but no luck.\n I added my header which includes the script that contains the function I am trying to run.\n Using the rendered id, document.getElementById(\"LoginView1_txt2ndNum\").value = 12 , works fine.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "css",
- "lightbox"
- ],
- "answer_count": 3,
- "accepted_answer_id": 4529480,
- "favorite_count": 0,
- "question_timeline_url": "/questions/4529460/timeline",
- "question_comments_url": "/questions/4529460/comments",
- "question_answers_url": "/questions/4529460/answers",
- "question_id": 4529460,
- "owner": {
- "user_id": 184814,
- "user_type": "registered",
- "display_name": "OM The Eternity",
- "reputation": 1720,
- "email_hash": "23a8b77e957cf10622f9039e4f3a954d"
- },
- "creation_date": 1293256850,
- "last_activity_date": 1308586634,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 863,
- "score": 0,
- "community_owned": false,
- "title": "How to fix the width and height of jquery lightbox?",
- "body": "I have aplied jquery lighbox on my image gallery, but due to the variable size of images, the lightbox size is not fixed hence opens up with image's original size, this in turn causes the biga images to go out of screen and display horizontal scroll bar in browser.
\n\nHence I am looking for the way to apply the fix width and height to lightbox so that every image must be displayed with this size in lightbox.
\n\nPlease help..
\n\n\n Update
\n \n\ni Just tried with the solution Scott (http://geekswithblogs.net/wojan/archive/2009/06/17/jquerylightbox.aspx ) has given to me, I did this,
\n\nfunction _resize_container_image_box(intImageWidth,intImageHeight) {\n// Get current width and height\n//rescale if necessary\nif((settings.maxWidth != null && settings.maxHeight != null) && (intImageWidth > settings.maxWidth || intImageHeight > settings.maxHeight)){\nvar isWider = intImageWidth > intImageHeight;//is the image wide or tall?\nvar scale = isWider ? settings.maxWidth/intImageWidth : settings.maxHeight/intImageHeight;\nintImageWidth = intImageWidth * scale;\nintImageHeight = intImageHeight * scale;\n}\n\n$('#lightbox-image').height(intImageHeight); \n$('#lightbox-image').width(intImageWidth); \nvar intCurrentWidth = $('#lightbox-container-image-box').width();\nvar intCurrentHeight = $('#lightbox-container-image-box').height();\n// Get the width and height of the selected image plus the padding\nvar intWidth = (intImageWidth + (settings.containerBorderSize * 2)); // Plus the image´s width and the left and right padding value\nvar intHeight = (intImageHeight + (settings.containerBorderSize * 2)); // Plus the image´s height and the left and right padding value\n// Diferences\nvar intDiffW = intCurrentWidth - intWidth;\nvar intDiffH = intCurrentHeight - intHeight;\n// Perfomance the effect\n$('#lightbox-container-image-box').animate({ width: intWidth, height: intHeight },settings.containerResizeSpeed,function() { _show_image(); });\nif ( ( intDiffW == 0 ) && ( intDiffH == 0 ) ) {\nif ( $.browser.msie ) {\n___pause(250);\n} else {\n___pause(100); \n}\n} \n$('#lightbox-container-image-data-box').css({ width: intImageWidth });\n$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ height: intImageHeight + (settings.containerBorderSize * 2) });\n};\n
\n\nAND
\n\n$('#gallery a').lightBox( maxHeight: null,\nmaxWidth: null);\n});\n
\n\nBut whenever I do this and click on the image just gets open in browsers annother tab, all the lightbox functinalty fails
\n\nPlease help me to correct it
\n\nThanks
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "prototype",
- "prototypejs"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414253/timeline",
- "question_comments_url": "/questions/6414253/comments",
- "question_answers_url": "/questions/6414253/answers",
- "question_id": 6414253,
- "owner": {
- "user_id": 444549,
- "user_type": "registered",
- "display_name": "woot586",
- "reputation": 146,
- "email_hash": "2b8b22a4feb9a73e64bd1a51287ef20f"
- },
- "creation_date": 1308586312,
- "last_edit_date": 1308586544,
- "last_activity_date": 1308586574,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "Prototype - How to deselect the selected value from a dropdown",
- "body": "How do I deselect the selected value from a dropdown list using Prototype.
\n\nFrom
\n\n<select id=“mylist\">\n<option value=“val-1”>Value 1</option>\n<option value=“val-2” SELECTED>Value 2</option>\n<option value=“val-3”>Value 3</option>\n</select>\n
\n\nTo
\n\n<select id=“mylist\">\n<option value=“val-1”>Value 1</option>\n<option value=“val-2”>Value 2</option>\n<option value=“val-3”>Value 3</option>\n</select>\n
\n\nThanks for any help in advance.
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 12,
- "accepted_answer_id": 6398800,
- "favorite_count": 7,
- "question_timeline_url": "/questions/6398787/timeline",
- "question_comments_url": "/questions/6398787/comments",
- "question_answers_url": "/questions/6398787/answers",
- "question_id": 6398787,
- "owner": {
- "user_id": 699159,
- "user_type": "registered",
- "display_name": "walle1357",
- "reputation": 348,
- "email_hash": "1d1af4fce4b64ececdfc88b33881bbc9"
- },
- "creation_date": 1308429772,
- "last_activity_date": 1308586389,
- "up_vote_count": 44,
- "down_vote_count": 1,
- "view_count": 843,
- "score": 43,
- "community_owned": false,
- "title": "Javascript Shorthand for getElementById",
- "body": "Is there any shorthand for the JavaScript document.getElementById? Or is there any way I can define one? It gets repetitive retyping that over and over .
\n"
- },
- {
- "tags": [
- "java",
- "javascript",
- "json"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6414173,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414107/timeline",
- "question_comments_url": "/questions/6414107/comments",
- "question_answers_url": "/questions/6414107/answers",
- "question_id": 6414107,
- "owner": {
- "user_id": 745835,
- "user_type": "registered",
- "display_name": "Mrshll187",
- "reputation": 49,
- "email_hash": "9e16629a5e67bf6bed7b1b519bceafa1"
- },
- "creation_date": 1308585657,
- "last_edit_date": 1308586215,
- "last_activity_date": 1308586215,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 42,
- "score": 0,
- "community_owned": false,
- "title": "In Java, How do I represent multiple objects (of same type) in a single JSON object.",
- "body": "I need to pass the attribtutes of particular type, as apart of a restful service to a javascript which will then display them to a webpage
\n\n @GET\n @Produces(\"application/json\")\n @Consumes(\"application/json\") \n @Path(\"/getStatusAll\")\n\n public void getStatusAll(\n @Context HttpServletRequest request,\n @Context HttpServletResponse response) throws ServletException,\n IOException\n\n{\n\n JSONArray jArray = new JSONArray();\n\n Collection<S> s = Manager.getS().values();\n for (Server i : svr)\n {\n JSONObject m = new JSONObject();\n\n m.put(\"name\",i.getName());\n m.put(\"status\",i.getStatus());\n\n jArray.add(m);\n\n }\n\n return jArray.toString();\n\n\n response.getOutputStream().print(jArray);\n response.flushBuffer();\n}\n
\n\nJAVASCRIPT will need to read ONE JSON object looking like:
\n\n[ {name:someName0, status: someStatus},\n {name:someName1, status: someStatus},\n {name:someName2, status: someStatus}...etc]\n
\n"
- },
- {
- "tags": [
- "javascript",
- "attributes"
- ],
- "answer_count": 5,
- "accepted_answer_id": 6414229,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414060/timeline",
- "question_comments_url": "/questions/6414060/comments",
- "question_answers_url": "/questions/6414060/answers",
- "question_id": 6414060,
- "owner": {
- "user_id": 805629,
- "user_type": "registered",
- "display_name": "joelson",
- "reputation": 6,
- "email_hash": "9d0f36cf7c4c77a62626ef9df43b79a7"
- },
- "creation_date": 1308585493,
- "last_edit_date": 1308585568,
- "last_activity_date": 1308586177,
- "up_vote_count": 0,
- "down_vote_count": 1,
- "view_count": 34,
- "score": -1,
- "community_owned": false,
- "title": "how get href all images in page using javascript?",
- "body": "how get href all images in page using javascript\nthis code return src how retunr href?
\n\nfunction checkimages() {\n var images = document.images;\n for (var i=0; i<images.length; i++){\n var img =images[i].src;\n alert(img);\n }\n}\n
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6413339,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413183/timeline",
- "question_comments_url": "/questions/6413183/comments",
- "question_answers_url": "/questions/6413183/answers",
- "question_id": 6413183,
- "owner": {
- "user_id": 111479,
- "user_type": "registered",
- "display_name": "tonsils",
- "reputation": 1260,
- "email_hash": "fdbc495cc9b5f7a789650b3ae4592bc4"
- },
- "creation_date": 1308581796,
- "last_edit_date": 1308582871,
- "last_activity_date": 1308586124,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 18,
- "score": 0,
- "community_owned": false,
- "title": "Manipulate Select Multiple List Setup On Page Load",
- "body": "I have the following two select (multiple lists) which I'm trying to setup as a shuttle by where I provide the user an \"Available List\" on the left which they can select from, which then gets transported to the right select list, which is my \"Assigned List\".
\n\nThe HTML code is as follows:
\n\n<select multiple=\"multiple\" name=\"avail_list\" size=\"7\" style=\"width:250px;\" id=\"AVAILABLE_LIST\">\n <option value=\"A\">A1</option>\n <option value=\"B\">B1</option>\n <option value=\"C\">C1</option>\n <option value=\"D\">D1</option>\n <option value=\"E\">E1</option>\n <option value=\"F\">F1</option>\n</select>\n\n<select multiple=\"multiple\" name=\"assign_list\" size=\"7\" style=\"width:250px;\" id=\"ASSIGNED_LIST\">\n <option value=\"D\">D1</option>\n <option value=\"E\">E1</option>\n <option value=\"F\">F1</option>\n</select>\n
\n\nThrough the use of jQuery, how could I possibly remove from the AVAILABLE_LIST, the options that have been selected and are now in the ASSIGNED_LIST?
\n\nI need to some how perform on the option values only (AVAILABLE_LIST minus ASSIGNED_LIST).
\n\nSo based on the above, the AVAILABLE_LIST would then look like this:
\n\n<select multiple=\"multiple\" name=\"avail_list\" size=\"7\" style=\"width:250px;\" id=\"AVAILABLE_LIST\">\n <option value=\"A\">A1</option>\n <option value=\"B\">B1</option>\n <option value=\"C\">C1</option>\n</select>\n
\n\n**NOTE:Just to make myself clear, I already have the above data setup when entering my page, that is, there are already values in the \"Assigned List\" on the right.
\n\nOn entry when presenting this page with the two select lists to the user, I want to programmatically perform the minus between the two sets in the background. There is no human interaction required as the selection has already been made.
\n\nJust wondering if this is possible?
\n\nThanks.
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6401725,
- "favorite_count": 0,
- "closed_date": 1308478690,
- "closed_reason": "not a real question",
- "question_timeline_url": "/questions/6401696/timeline",
- "question_comments_url": "/questions/6401696/comments",
- "question_answers_url": "/questions/6401696/answers",
- "question_id": 6401696,
- "owner": {
- "user_id": 533617,
- "user_type": "unregistered",
- "display_name": "David19801",
- "reputation": 822,
- "email_hash": "cba0529762ef11ebc58637b537a42acd"
- },
- "creation_date": 1308476786,
- "last_edit_date": 1308586104,
- "last_activity_date": 1308586104,
- "up_vote_count": 0,
- "down_vote_count": 2,
- "view_count": 70,
- "score": -2,
- "community_owned": false,
- "title": "javascript, what is this?",
- "body": "I have found this javascript code from instapaper's bookmarklet.
\n\nWhat exactly is this code doing?
\n\njavascript:\nfunction%20iprl5(){\n var%20d=document,z=d.createElement('scr'+'ipt'),b=d.body,l=d.location;\n try{\n if(!b)\n throw(0);\n d.title='(Saving...)%20'+d.title;\n z.setAttribute('src',l.protocol+'//www.instapaper.com/j/deyNbbpjuSei?u='+encodeURIComponent(l.href)+'&t='+(new%20Date().getTime()));\n b.appendChild(z);\n }\n catch(e){\n alert('Please%20wait%20until%20the%20page%20has%20loaded.');\n }\n}\niprl5();\nvoid(0)\n
\n\nThanks in advance!
\n"
- },
- {
- "tags": [
- "javascript",
- "python",
- "web-scraping",
- "hashbang",
- "phantomjs"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414152/timeline",
- "question_comments_url": "/questions/6414152/comments",
- "question_answers_url": "/questions/6414152/answers",
- "question_id": 6414152,
- "owner": {
- "user_id": 321838,
- "user_type": "registered",
- "display_name": "tchaymore",
- "reputation": 328,
- "email_hash": "e6f67177880fb558b629820b882b159b"
- },
- "creation_date": 1308585846,
- "last_activity_date": 1308585846,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 15,
- "score": 1,
- "community_owned": false,
- "title": "Navigating / scraping hashbang links with javascript (phantomjs)",
- "body": "I'm trying to download the HTML of a website that is almost entirely generated by JavaScript. So, I need to simulate browser access and have been playing around with PhantomJS . Problem is, the site uses hashbang URLs and I can't seem to get PhantomJS to process the hashbang -- it just keeps calling up the homepage.
\n\nThe site is http://www.regulations.gov . The default takes you to #!home. I've tried using the following code (from here ) to try and process different hashbangs.
\n\nif (phantom.state.length === 0) {\n if (phantom.args.length === 0) {\n console.log('Usage: loadreg_1.js <some URL>');\n phantom.exit();\n }\n var address = 'http://www.regulations.gov/';\n var hash = phantom.args[0];\n console.log(address);\n phantom.state = Date.now().toString();\n phantom.open(address);\n\n} else {\n var hash = phantom.args[0];\n document.location = hash;\n console.log(document.location.hash);\n var elapsed = Date.now() - new Date().setTime(phantom.state);\n if (phantom.loadStatus === 'success') {\n if (!first_time) {\n var first_time = true;\n if (!document.addEventListener) {\n console.log('Not SUPPORTED!');\n }\n phantom.render('result.png');\n var markup = document.documentElement.innerHTML;\n console.log(markup);\n phantom.exit();\n }\n } else {\n console.log('FAIL to load the address');\n phantom.exit();\n }\n}\n
\n\nThis code produces the correct hashbang (for instance, I can set the hash to '#!contactus') but it doesn't dynamically generate any different HTML--just the default page.
\n\nI've also tried to set the initial address to the hashbang, but then the script just hangs and doesn't do anything.
\n\nThoughts?
\n"
- },
- {
- "tags": [
- "javascript",
- "facebook",
- "api",
- "like",
- "app-id"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6414105/timeline",
- "question_comments_url": "/questions/6414105/comments",
- "question_answers_url": "/questions/6414105/answers",
- "question_id": 6414105,
- "owner": {
- "user_id": 806911,
- "user_type": "registered",
- "display_name": "anson",
- "reputation": 1,
- "email_hash": "26415c14e002ed031a23225efdebc7c7"
- },
- "creation_date": 1308585655,
- "last_activity_date": 1308585655,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 8,
- "score": 0,
- "community_owned": false,
- "title": "Facebook API FB.getLoginStatus returns undefined",
- "body": "I have added a like button on my website, and want to know who clicked the like button.\nThese are my sample code:
\n\n <div id=\"fb-root\"></div>\n <script>\n window.fbAsyncInit = function() {\n FB.init({appId: '182722795115444', status: true, cookie: true,\n xfbml: true});\n\n // To find who clicked the like button\n FB.Event.subscribe('edge.create', function(response){\n FB.getLoginStatus(function(response) {\n\n if (response.session) {\n // logged in and connected user, someone you know\n alert(\"logged in and connected user\");\n } else {\n // no user session available, someone you dont know\n alert(\"no user session available\");\n }\n });\n });\n };\n (function() {\n var e = document.createElement('script'); e.async = true;\n e.src = document.location.protocol +\n '//connect.facebook.net/en_US/all.js';\n document.getElementById('fb-root').appendChild(e);\n }());\n </script>\n <script src=\"http://connect.facebook.net/en_US/all.js#appId=182722795115444&xfbml=1\"></script>\n <fb:like href=\"www.blogcountry.net\" send=\"true\" width=\"450\" show_faces=\"true\" font=\"\"></fb:like>\n
\n\nWhen I clicked the Like button, and login facebook, do like successfully, but got \"no user session available\" alert.
\n\nSo I am confused:
\n\n\nMy appId in FB.init is the same as\nfb:like tag, is it right? \nAre there something wrong in my\nprogram ? \nHow to get user name who click the\nLike button? \n \n\nThanks in advance.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "xml",
- "firefox"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6410184/timeline",
- "question_comments_url": "/questions/6410184/comments",
- "question_answers_url": "/questions/6410184/answers",
- "question_id": 6410184,
- "owner": {
- "user_id": 282887,
- "user_type": "registered",
- "display_name": "Bakhtiyor",
- "reputation": 663,
- "email_hash": "5422e34c270c77415bbcc6ed93544b3d"
- },
- "creation_date": 1308567697,
- "last_edit_date": 1308568088,
- "last_activity_date": 1308585449,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 52,
- "score": 1,
- "community_owned": false,
- "title": "jQuery.find().each(fn) is not working in Firefox",
- "body": "I have AJAX call to one XML file and the source code is given below. It works perfectly in Chrome but is not working in Firefox. When doing debug I see that it doesn't enter to the cycle of $(response).find(\"simpleType\").each(function() in Firefox.
\n\nDoes anybody know what is the problem here in my code?
\n\n$.ajax({\n type:\"GET\",\n url:\"views/workspace/branching_forms/StudentModelDescription.xml\",\n dataType:\"xml\",\n error:function(XMLHttpRequest, textStatus, errorThrown){\n alert(\"error=\"+XMLHttpRequest+\" error2=\"+textStatus+\" error3=\"+errorThrown);\n },\n success:function(response){ \n var i=1;\n console.log(\"response=\"+response);\n $(response).find(\"simpleType\").each(function(){ \n adaptation_type_name[i]=$.trim($(this).find(\"documentation\").text()); \n var restriction = $(this).find(\"restriction[base=xs:string]\");\n j=1;\n var values=new Array(); \n $(restriction).find(\"enumeration\").each(function(){\n var tmp=$(this).attr(\"value\"); \n values[j] = tmp;\n j++;\n });\n adaptation_type_variables[i]=values; \n console.log(\"adaptation_type_name=\"+adaptation_type_name[i]+\", adaptation_type_variables=\"+adaptation_type_variables[i]);\n i++; \n }); \n for(var i=1;i<=adaptation_type_name.length;i++) \n $('#adaptation_type_dialog #branching_adaptation_type').append($(\"<option></option>\").attr(\"value\",i).text(adaptation_type_name[i]));\n\n }\n});\n
\n\nThe content of StudentModelDescription.xml is given below:
\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">\n <xs:simpleType name=\"browser\" id=\"context_browser\">\n <xs:annotation>\n <xs:documentation xml:lang=\"en\">Web Browser</xs:documentation>\n </xs:annotation>\n <xs:restriction base=\"xs:string\">\n <xs:enumeration value=\"Safari\" id=\"1\" />\n <xs:enumeration value=\"Google Chrome\" id=\"2\" />\n <xs:enumeration value=\"Opera\" id=\"3\" />\n <xs:enumeration value=\"Mozilla Firefox\" id=\"4\" />\n <xs:enumeration value=\"Internet Explorer\" id=\"5\" />\n </xs:restriction>\n </xs:simpleType> \n <xs:simpleType name=\"networktype\" id=\"context_networktype\">\n <xs:annotation>\n <xs:documentation xml:lang=\"en\">Network Type</xs:documentation>\n </xs:annotation>\n <xs:restriction base=\"xs:string\">\n <xs:enumeration value=\"ADSL2+/Cable (High capacity)\" id=\"1\" />\n <xs:enumeration value=\"ADSL / HSPA (Moderate capacity)\" id=\"2\" />\n <xs:enumeration value=\"Dialup / GPRS (Low capacity)\" id=\"3\" />\n </xs:restriction>\n </xs:simpleType>\n</xs:schema>\n
\n"
- },
- {
- "tags": [
- "javascript",
- "ajax",
- "jquery-ajax"
- ],
- "answer_count": 2,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6413944/timeline",
- "question_comments_url": "/questions/6413944/comments",
- "question_answers_url": "/questions/6413944/answers",
- "question_id": 6413944,
- "owner": {
- "user_id": 592435,
- "user_type": "registered",
- "display_name": "Ravi Teja",
- "reputation": 33,
- "email_hash": "4e774187456a5953a4cf97f60344ec26"
- },
- "creation_date": 1308584971,
- "last_activity_date": 1308585353,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "Changing content of a webpage using Ajax",
- "body": "Is it possible to change the content of a webpage using ajax?\nMy need is to actually change the options of a selection. \nFor example my x123.com/setting.html
\n\n<html>\n<head>\n <meta http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\">\n <title>Webpage</title> \n <script>\n function save_changes() {\n //save the selection\n }\n </script>\n\n</head> \n<body>\n <select name=\"\" multiple>\n <option value=\"123\">123</option>\n <option value=\"456\">456</option>\n </select> \n <input type=\"button\" name=\"Submit Dude\" onclick='save_changes()'>\n</body> \n</html>\n
\n\nI want to give a request from x123.com/123.html
and reload the current page(x123.com/123.html
) so that the changes in x123.com/setting.html
are actually reflected in this one.
\n\nLemme know if my explanation is not clear.
\n"
- },
- {
- "tags": [
- "javascript",
- "forms",
- "user"
- ],
- "answer_count": 5,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413889/timeline",
- "question_comments_url": "/questions/6413889/comments",
- "question_answers_url": "/questions/6413889/answers",
- "question_id": 6413889,
- "owner": {
- "user_id": 789918,
- "user_type": "registered",
- "display_name": "Mauricio",
- "reputation": 6,
- "email_hash": "29de018a3ee44a96503802c7516d7660"
- },
- "creation_date": 1308584750,
- "last_activity_date": 1308585305,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 18,
- "score": 0,
- "community_owned": false,
- "title": "Use JavaScript to store and return user info",
- "body": "I'm looking for a way to have users fill out a form and then print their information through the entire site (Like when you sign in to StackOverflow, your name changes on the top and it retains the information as you navigate the rest of the site). I'm thinking it's something to do with placing \"onClick\" on the submit button, but I need the information to be carried throughout the pages.
\n\n<form name=\"input\" action=\"html_form_action.asp\" method=\"get\">\nFirst name: <input type=\"text\" name=\"FirstName\" value=\"Mickey\" /><br />\nLast name: <input type=\"text\" name=\"LastName\" value=\"Mouse\" /><br />\n<input type=\"submit\" value=\"Submit\" />\n</form> \n
\n\nThanks in advance.
\n"
- },
- {
- "tags": [
- "javascript",
- "xml",
- "xslt",
- "firefox-addon"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413778/timeline",
- "question_comments_url": "/questions/6413778/comments",
- "question_answers_url": "/questions/6413778/answers",
- "question_id": 6413778,
- "owner": {
- "user_id": 806920,
- "user_type": "registered",
- "display_name": "Lukas Ruge",
- "reputation": 1,
- "email_hash": "be5ae20541e29f445166885a87a81d35"
- },
- "creation_date": 1308584172,
- "last_edit_date": 1308584542,
- "last_activity_date": 1308585270,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 10,
- "score": 0,
- "community_owned": false,
- "title": "javascript: Problem with dynamically adding xsl-stylesheet to XML Data",
- "body": "I'm trying to write my first Firefoy-Eytension. The extension is supposed to display FOAF-Files in a nice way using XSLT. Right now I just wan't to add the XSL Stylesheet to the rdf file when I press a button. The function is called but the presentation of the rdf-file does not change.
\n\nfunction loadXMLDoc(dname)\n{\n if (window.XMLHttpRequest)\n {\n xhttp=new XMLHttpRequest();\n }\n else\n {\n xhttp=new ActiveXObject(\"Microsoft.XMLHTTP\");\n }\n xhttp.open(\"GET\",dname,false);\n xhttp.send(\"\");\n return xhttp.responseXML;\n}\n\nfunction displayMyResult()\n{\n alert(\"test\")\n xml=loadXMLDoc(\"http://www.example.com/me.rdf\");\n xsl=loadXMLDoc(\"http://www.example.com/test.xsl\");\n if (window.ActiveXObject)\n {\n ex=xml.transformNode(xsl);\n content.document.location.replace(ex)\n }\n // code for Mozilla, Firefox, Opera, etc.\n else if (document.implementation && document.implementation.createDocument)\n {\n xsltProcessor=new XSLTProcessor();\n xsltProcessor.importStylesheet(xsl);\n resultDocument = xsltProcessor.transformToFragment(xml,document);\n content.document.location.replace(ex)\n }\n}\n
\n\nThe first function loadXMLDoc is copied from another post here, and should probably work. The Probem is in the displayMyResult Method. The test-Alert confirms, that the function is called but the me.rdf file is not displayed any different.
\n\nI belive that the line content.document.location.replace(ex) is wrong but have not found anything on the web that would explain to me what to use instead.
\n\nCan anybody tell me how to load the XLST-Stylesheet to present the RDF File?
\n"
- },
- {
- "tags": [
- "java",
- "javascript",
- "html",
- "scala",
- "htmlunit"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6365007,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6364675/timeline",
- "question_comments_url": "/questions/6364675/comments",
- "question_answers_url": "/questions/6364675/answers",
- "question_id": 6364675,
- "owner": {
- "user_id": 107877,
- "user_type": "registered",
- "display_name": "Mike Cialowicz",
- "reputation": 1905,
- "email_hash": "818df74dc3bb3fd1d8a1848e238b53d6"
- },
- "creation_date": 1308173653,
- "last_activity_date": 1308584950,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 35,
- "score": 0,
- "community_owned": false,
- "title": "HtmlUnit's HtmlPage.getElementById seems to reinitialize JavaScript after many calls.",
- "body": "I have a simple HTML page (ratings.html) that I'm trying to test using HtmlUnit. The action that I'm testing works when I load it up in a browser and do it by hand. However, when I try to test it with HtmlUnit, it seems like too many calls to getElementById (or getInputByName) cause the JavaScript on the page to be reinitialized.
\n\nIn the AddRating.scala test, the first two calls to page.addRating work, but the third fails because it can't find the 'rating3' element on the page. After lots of debugging, I've discovered that the ratingCount
gets reset back to 0 for some reason.
\n\nSee my comments below (between the // ******
sections) to see where the problem areas are.
\n\nHas anyone else experience this behavior or have any advice on how to deal with it? Thanks!
\n\nratings.html (HTML Page to add \"ratings\"):
\n\n<html>\n <head>\n <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js\"></script>\n <script src=\"http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js\"></script>\n </head>\n <body>\n <form name=\"new-rating\" method=\"post\" action=\"/add-rating\">\n <table>\n <tr>\n <td valign=\"top\">Ratings:</td>\n <td>\n Should be ordered from best to worst.<br>\n <a id=\"add-rating\" href=\"#\">add rating</a></td>\n </tr>\n <tr>\n <td></td>\n <td>\n <button name=\"submit-button\" type=\"submit\">Add Rating</button>\n </td>\n </tr>\n </table>\n </form>\n <h2>All Ratings</h2>\n\n <ul id=\"ratings\">\n </ul>\n\n <script>\n $(window).load(function(){ \n // display ratings\n $.getJSON(\"/ratings\", function(data)\n {\n var items = $.map(data, function(el) {\n var ratingsTable = \"\";\n if (el.ratings.length > 0)\n {\n $.tmpl(\"<li><table><tr><th>Rating</th></tr>{{each ratings }}<tr><td>${$value.label}</td></tr>{{/each}}</table></li>\", el).appendTo(\"#ratings\");\n }\n });\n });\n\n // add rating action\n // ***********\n var ratingCount = 0; // THIS GETS RE-INITIALIZED TO 0 AFTER TOO MANY getElementById or getElementByName calls.\n // ***********\n $('#add-rating').click(function()\n {\n ratingCount += 1;\n $('#remove-rating').show();\n $.tmpl(\"<span id='rating${ratingId}'><input name='rating${ratingId}'><br></span>\",\n {ratingId: ratingCount}).insertBefore('#add-rating');\n if(ratingCount >= 5) { $('#add-rating').hide(); }\n });\n });\n </script>\n </body>\n</html>\n
\n\nRatingsPage.scala (Scala interface to HTML page):
\n\npackage portal\n\nimport com.gargoylesoftware.htmlunit.WebClient\nimport com.gargoylesoftware.htmlunit.html._\n\nimport infrastructure.SuperHtmlUnitConversions._\n\nimport infrastructure.WaitFor\n\nclass RatingsPage(page: HtmlPage)\n{\n val newRatingForm: HtmlForm = page.getFormByName(\"new-rating\")\n\n var ratingCount = 0\n\n def submit(): RatingsPage =\n {\n val page = newRatingForm.getButtonByName(\"submit-button\").click[HtmlPage]()\n ratingCount = 0\n new RatingsPage(page)\n }\n\n def addRating(rating: String)\n {\n page.getElementById(\"add-rating\").click()\n ratingCount += 1\n newRatingForm.getInputByName(\"rating\" + ratingCount).asInstanceOf[HtmlInput].setValueAttribute(rating)\n }\n\n def asText(): String = page.asText\n def asXml(): String = page.asXml\n}\n
\n\nAddRating.scala (Scala HtmlUnit test that fails):
\n\npackage portal\n\nimport java.util.Date\nimport org.scalatest.FunSuite\nimport org.scalatest.junit.JUnitRunner\nimport org.junit.runner.RunWith\nimport org.scalatest.matchers.ShouldMatchers\nimport com.gargoylesoftware.htmlunit.WebClient\nimport com.gargoylesoftware.htmlunit.html._\nimport infrastructure.WaitFor\n\n@RunWith(classOf[JUnitRunner])\nclass AddRating extends FunSuite with ShouldMatchers\n{\n test(\"add ratings\")\n {\n val client = new WebClient()\n val index = new PortalIndexPage(client)\n var page = index.goToRatingsPage()\n\n page.addRating(\"Buy\") // WORKS\n page.addRating(\"Sell\") // WORKS\n // *********\n page.addRating(\"Sell\") // FAILS! Can't find element with \"rating3\" name!\n // *********\n page = page.submit()\n WaitFor(\"rating to show up\", ()=>page.asXml.contains(\"Sell\"))\n\n page.asText should include (\"Buy\")\n\n client.closeAllWindows()\n }\n}\n
\n"
- },
- {
- "tags": [
- "javascript",
- "node.js",
- "express",
- "socket.io"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6397574/timeline",
- "question_comments_url": "/questions/6397574/comments",
- "question_answers_url": "/questions/6397574/answers",
- "question_id": 6397574,
- "owner": {
- "user_id": 776796,
- "user_type": "registered",
- "display_name": "user776796",
- "reputation": 20,
- "email_hash": "9409cb9468f20f7b03a6515bdf5ff81c"
- },
- "creation_date": 1308417018,
- "last_edit_date": 1308444873,
- "last_activity_date": 1308584891,
- "up_vote_count": 3,
- "down_vote_count": 0,
- "view_count": 39,
- "score": 3,
- "community_owned": false,
- "title": "How to access session in express, outside of the req?",
- "body": "I know that I can use
\n\nfunction(req, res) {\n req.session\n}\n
\n\nusing express. However I need to access the session outside of the response function. How would I go about doing that?
\n\nI'm using socket.io to pass information for adding posts and comments. So when I receive the socket.io message on the server-side, I need to verify the person posting the information by using the session. However since this is being done via socket.io there is no req/res.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "html",
- "xml",
- "check"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6405964/timeline",
- "question_comments_url": "/questions/6405964/comments",
- "question_answers_url": "/questions/6405964/answers",
- "question_id": 6405964,
- "owner": {
- "user_id": 672841,
- "user_type": "registered",
- "display_name": "Can't Tell",
- "reputation": 469,
- "email_hash": "031c656239e481086f37717b07b17522"
- },
- "creation_date": 1308530151,
- "last_edit_date": 1308534239,
- "last_activity_date": 1308584597,
- "up_vote_count": 1,
- "down_vote_count": 1,
- "view_count": 75,
- "score": 0,
- "community_owned": false,
- "title": "Check if a String is HTML or XML",
- "body": "Is there a way to check if a String is HTML or XML in JavaScript? Preferably using jQuery rather than some other library?\nWhy I need to do this is because I need to know if it possible to have a function into which XML or HTML can be passed. If it is HTML we take one action and if it is XML we take another action.
\n"
- },
- {
- "tags": [
- "javascript",
- "settimeout",
- "autosuggest"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413523/timeline",
- "question_comments_url": "/questions/6413523/comments",
- "question_answers_url": "/questions/6413523/answers",
- "question_id": 6413523,
- "owner": {
- "user_id": 806915,
- "user_type": "unregistered",
- "display_name": "Scott Dykstra",
- "reputation": 6,
- "email_hash": "e58f134cbdd998fd90d6951043fbf274"
- },
- "creation_date": 1308583177,
- "last_activity_date": 1308584532,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 24,
- "score": 1,
- "community_owned": false,
- "title": "complex problem with setTimeout, clearTimeout, and javascript",
- "body": "I am a bit of a noob at Javascript and am writing an \"autoresult\" script that automatically gets the results of an as the user is typing. However, because the PHP backend is slow, I want the script to check and see if it has been 1 second since the last keyup. That way, the PHP backend won't be called unless the user is done typing. My idea was to use setTimeout and clearTimeout to handle this. However, my script doesn't work. Here is the input that calls the script:
\n\n<input type=\"text\" id=\"inputbox\" onkeyup=\"lookup_input(this.value,0);\" />\n
\n\n\"0\" is a flag used to check whether a Timeout has been set. Here is the script:
\n\nvar timeOut1;\n\nfunction showQuery(input_myinput2) { \n $.post(\"mybackendfile.php\", {queryString: input_myinput2}, function(data){\n if(data.length >0) {\n $('#mydiv').html(data); //php backend stuff, don't worry about this\n }\n });\n} \nfunction lookup_input(input_myinput,flag) {\n if(input_myinput.length == 0) {\n $('#mydiv').hide(); //check to see if there is an input, and if not, hide the div that displays autoresults\n } \n else { \n //the flag checks to see if the Timeout has been set\n\n if(!flag) { \n timeOut1 = setTimeout(function(){showQuery(input_myinput)}, 1000);\n //change the flag to \"1\" so that if another key is pressed it will throw the else statement, and if the key is pressed soon enough, it will clear the Timeout\n $('#inputbox').onkeyup('lookup_input(this.value,1)'); \n $('#mydiv').show();\n $('#mydiv').html('Searching... ');\n }\n else { //if timeout has been set then and next key has been pressed\n clearTimeout(timeOut1);\n $('#mydiv').html('Searching... ');\n timeOut1 = setTimeout(function(){showQuery(input_myinput)}, 1000); \n }\n }\n} \n
\n\nany suggestions on how to access the showQuery function correctly and how to get this script to work? also, any suggestions on another way to do the autoresult stall besides using setTimeout/clearTimeout? thanks!
\n"
- },
- {
- "tags": [
- "javascript",
- "facebook",
- "innerhtml",
- "getelementbyid"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413720/timeline",
- "question_comments_url": "/questions/6413720/comments",
- "question_answers_url": "/questions/6413720/answers",
- "question_id": 6413720,
- "owner": {
- "user_id": 193996,
- "user_type": "registered",
- "display_name": "Dasa",
- "reputation": 84,
- "email_hash": "3e365666b8b4473179ab1cdc05c0ec36"
- },
- "creation_date": 1308583956,
- "last_edit_date": 1308584446,
- "last_activity_date": 1308584446,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 18,
- "score": 0,
- "community_owned": false,
- "title": "facebook wall post message with js from innerhtml",
- "body": "Three divs nested in one
\n\n<div id=\"fulltxt\">\n<div id='action'>txt1 </div>\n<div id='reason'> txt2 </div>\n<div id=\"party\"> txt3 </div>\n</div>\n
\n\nusing encodeURIComponent I want to use all the text as a message to send to users wall when they click my \"send to facebook\" link
\n\nThis is in my
\n\n<script>\n // A function to post on the users wall\n function wallPost() {\n FB.ui(\n {\n method: 'feed',\n name: 'example',\n link: 'http://www.example.com',\n picture: 'http://www.example.com/logo.png',\n caption: 'funny example',\n description: 'This was posted from example.com.',\n message: ''\n },\n function(response) {\n if (response && response.post_id) {\n document.getElementById('message').innerHTML = 'Thanks for sharing!';\n } else {\n document.getElementById('message').innerHTML = 'Hey, you didn\\'t share!';\n }\n }\n );\n }\n</script>\n
\n\nThis is before my closing body tag
\n\n<div id=\"fb-root\"></div>\n<script src=\"https://connect.facebook.net/he_IL/all.js\"></script>\n<script>\n FB.init({\n appId : 'number goes here',\n status : true, // check login status\n cookie : true, // enable cookies to allow the server to access the session\n xfbml : true // parse XFBML\n });\n</script>\n
\n\nThis is the link
\n\n<p id=\"message\">\n <a href=\"#\" onclick=\"wallPost();\">Share Me!</a>\n</p>\n
\n\nSo what I need is that when the link is clicked the message changes to the content of fulltxt and passes to facebook
\n\nhow do i change the message in the wallpost function to the dynamically created content in the fulltxt div
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "jquery-ui",
- "droppable"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412334/timeline",
- "question_comments_url": "/questions/6412334/comments",
- "question_answers_url": "/questions/6412334/answers",
- "question_id": 6412334,
- "owner": {
- "user_id": 797743,
- "user_type": "registered",
- "display_name": "Jason S",
- "reputation": 1,
- "email_hash": "228384247e084ecfab05558229195aba"
- },
- "creation_date": 1308578149,
- "last_edit_date": 1308581741,
- "last_activity_date": 1308584195,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 37,
- "score": 0,
- "community_owned": false,
- "title": "jQuery \"drop\" and \"over\" are not firing on a droppable",
- "body": "I was trying to improve my web-dev skills for work but got a bit carried away with jQuery's drag and drop feature. Unfortunately I can't get the \"drop\" or \"over\" events of the droppable to fire.
\n\nI didn't want to use a jQuery table drag/drop plugin so i have multiple div in a div in a td structures (all generated in $(document).ready). The middle div is to be the droppable and the inner most div is to be the draggable. The generated HTML looks like this:
\n\n<td class=\"vertical\">\n<div id=\"droppable3\" class=\"droppable ui-droppable\" style=\"width: 100%; height: 100%;\"\nover=\"function () { alert(\"working!\"); }\" \ndrop=\"function (event, ui) { \n debugger;\n var firstDrag = ui.draggable;\n var secondDrag = $(this).childNodes[0];\n var destDrop = $(this);\n var sourceDrop = firstDrag.parent;\n $(\"#middle\").append(\"first drag:\" + firstDrag.id + \"\\nSecondDrag:\" + secondDrag.id\n + \"\\ndest Drop:\" + destDrop.id + \"\\nsourceDrop:\" + sourceDrop.id); }\">\n <div id=\"draggable3\" class=\"draggable ui-draggable\" \n style=\"width: 100%; height: 100%;\">\n </div>\n</div>\n</td>\n
\n\nand it is exactly the same in other TDs except for the ids.
\n\nNow the dragging seems to work fine; i can drag that inner div out and it will revert back if i don't put it on an appropriate droppable or just stick there if i do but it never triggers the \"over\" or \"drop\" events. The debugger line in that code is never hit.
\n\nHere is how i'm setting up the draggable/droppable:
\n\nfunction getTD(claz){\nvar td = jQuery(\"<td/>\",{'class': claz});\nvar droppable = jQuery(\"<div/>\",{\n 'class': 'droppable',\n width: '100%',\n height:'100%',\n id: \"droppable\"+ids[index],\n over: function() {\n alert('working!');\n },\n drop: function(event,ui){\n debugger;\n var firstDrag = ui.draggable;\n var secondDrag = $(this).childNodes[0];\n var destDrop = $(this);\n var sourceDrop = firstDrag.parent;\n $(\"#middle\").append(\"first drag:\"+firstDrag.id +\"\\nSecondDrag:\"+secondDrag.id\n +\"\\ndest Drop:\"+destDrop.id +\"\\nsourceDrop:\"+sourceDrop.id);\n\n }\n });\n var draggable = jQuery(\"<div/>\",{\n 'class': 'draggable',\n width: '100%',\n height:'100%',\n id: \"draggable\"+ids[index], \n });\n\n draggable.draggable({\n revert: 'invalid'\n });\n droppable.droppable({\n accept: \".draggable\"\n });\n index++;\n droppable.append(draggable);\n td.append(droppable);\n return td;\n
\n\n}
\n\nBasically what i am trying to achieve is swappable tiles in a table and i'm pretty sure the js in the event handler is rubbish but we'll deal with that once it's firing.
\n\nOh and im using:\nhttps://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js \nhttps://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js
\n\nAny comments would be appreciated.\nThanks :)
\n\nEDIT:
\n\nI was being really stupid. I was putting the \"drop\" and \"over\" events in the attributes of the element, not the options of the droppable!
\n"
- },
- {
- "tags": [
- "javascript",
- "google-maps",
- "google"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6413747,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413541/timeline",
- "question_comments_url": "/questions/6413541/comments",
- "question_answers_url": "/questions/6413541/answers",
- "question_id": 6413541,
- "owner": {
- "user_id": 478489,
- "user_type": "registered",
- "display_name": "amix.pal",
- "reputation": 10,
- "email_hash": "18018fe3a71122bc0648943d6892ffb3"
- },
- "creation_date": 1308583220,
- "last_edit_date": 1308583832,
- "last_activity_date": 1308584113,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 21,
- "score": 0,
- "community_owned": false,
- "title": "Put an image on Google map",
- "body": "I am creating a web page which shows the Google map using java script. I did this part now i have to pun an image on that map as a icon.Would you please tell me how will i able to do that?
\n\n\n\n
\n\n<script language=\"javascript\">\n var lat=1067;\n var lon=-110;\n\n function load() {\n if (GBrowserIsCompatible()) {\n var map = new GMap2(document.getElementById(\"map\"));\n map.setCenter(new GLatLng(lat, lon), 13);\n }\n }\n function map(position) {\n lat = position.coords.latitude;\n lon = position.coords.longitude;\n load();\n }\n function get_location() {\n navigator.geolocation.getCurrentPosition(map);\n }\n </script>\n
\n\n\n\nSearch
\n\n\n\nThanks\nAmit Pal
\n"
- },
- {
- "tags": [
- "javascript",
- "image-processing",
- "webgl"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413744/timeline",
- "question_comments_url": "/questions/6413744/comments",
- "question_answers_url": "/questions/6413744/answers",
- "question_id": 6413744,
- "owner": {
- "user_id": 400327,
- "user_type": "registered",
- "display_name": "Trevor",
- "reputation": 8,
- "email_hash": "a26652004f1b6ed7f5764189ce722823"
- },
- "creation_date": 1308584078,
- "last_activity_date": 1308584078,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 6,
- "score": 0,
- "community_owned": false,
- "title": "Looking to access 16-bit image data in Javascript/WebGL",
- "body": "I'm trying to download 16-bit image data from a server and push it into a WebGL texture without browser plug-ins. texImage2d will work with: ImageData, HTMLImageElement, HTMLCanvasElement, or HTMLVideoElement. I'm looking for some javascript (a library or code sample) which can decode 16-bit TIFF or similar (hdf5, etc.) image data into one of these object types.
\n\nI have no problem doing this is 8-bit per channel RGB by using an to load a PNG but this doesn't work with 16-bit per channel data since there aren't any \"standard\" browser supported image formats which are 16-bit.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "function",
- "variables",
- "passing"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413440/timeline",
- "question_comments_url": "/questions/6413440/comments",
- "question_answers_url": "/questions/6413440/answers",
- "question_id": 6413440,
- "owner": {
- "user_id": 389271,
- "user_type": "registered",
- "display_name": "android.nick",
- "reputation": 696,
- "email_hash": "7fb8e97ca4d0322cdad566c81437e38a"
- },
- "creation_date": 1308582821,
- "last_activity_date": 1308583854,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 22,
- "score": 1,
- "community_owned": false,
- "title": "Jquery: passing variable to the next chained function, is this the correct way?",
- "body": "I want to know if this is correct.
\n\n$('.myfilter').focus(function(){\n var length = $(this).val().length; \n if (length == 0) {\n dosomething\n }\n}).blur(function(length){\n if (length == 0) {\n dowhatever\n }\n})\n
\n\nAbove i've simplified my code, im just checking if length == 0
on focus and blur for my input. notice how I declared length
in focus, but not in blur, but i added the variable name inside .blur(function(length){
. Is this the better way to get length
accessible in .blur
without having to re-declare var length = $(this).val().length;
in .blur?
\n\nas opposed to this:
\n\n$('.myfilter').focus(function(){\n var length = $(this).val().length; \n if (length == 0) {\n dosomething\n }\n})\n\n$('.myfilter').blur(function(length){\n var length = $(this).val().length;\n if (length == 0) {\n dowhatever\n }\n})\n
\n\nthe first code block is the better way to do this?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "safari",
- "google-chrome",
- "webkit"
- ],
- "answer_count": 14,
- "accepted_answer_id": 670433,
- "favorite_count": 24,
- "question_timeline_url": "/questions/318630/timeline",
- "question_comments_url": "/questions/318630/comments",
- "question_answers_url": "/questions/318630/answers",
- "question_id": 318630,
- "owner": {
- "user_id": 27623,
- "user_type": "registered",
- "display_name": "Frank Bannister",
- "reputation": 207,
- "email_hash": "9209ea2a036a546d315da5600f0025b9"
- },
- "creation_date": 1227642278,
- "last_activity_date": 1308583654,
- "up_vote_count": 26,
- "down_vote_count": 0,
- "view_count": 51874,
- "score": 26,
- "community_owned": false,
- "title": "Get real image width and height with Javascript in Safari/Chrome?",
- "body": "I am creating a jQuery plugin.
\n\nHow do I get real image width and height with Javascript in Safari?
\n\nFollowing works with Firefox 3, IE7 and Opera 9:
\n\nvar pic = $(\"img\")\n\n// need to remove these in of case img-element has set width and height\npic.removeAttr(\"width\"); \npic.removeAttr(\"height\");\n\nvar pic_real_width = pic.width();\nvar pic_real_height = pic.height();\n
\n\nBut in Webkit browsers like Safari and Google Chrome values are 0...
\n\nDoing this on server side is not an option.
\n"
- },
- {
- "tags": [
- "php",
- "javascript",
- "web-development"
- ],
- "answer_count": 4,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6411964/timeline",
- "question_comments_url": "/questions/6411964/comments",
- "question_answers_url": "/questions/6411964/answers",
- "question_id": 6411964,
- "owner": {
- "user_id": 213738,
- "user_type": "registered",
- "display_name": "Mattis",
- "reputation": 484,
- "email_hash": "80fe3a01e22a86fa6c652ee7d75d5b31"
- },
- "creation_date": 1308576818,
- "last_edit_date": 1308583543,
- "last_activity_date": 1308583543,
- "up_vote_count": 1,
- "down_vote_count": 1,
- "view_count": 54,
- "score": 0,
- "community_owned": false,
- "title": "Should I rely on externally-hosted services?",
- "body": "I am wondering over the dangers / difficulties in using external services like Google Chart in my production state website.
\n\nWith external services I mean them that you can't download and host on your own server.
\n\n(-) Potentially the Google service can be down when my site is up.
\n\n(+) I don't have to develop those particular systems for new browser technologies, hopefully Google will do that for me.
\n\n(-) Extra latency while my site fetch the data from the google servers.
\n\nWhat else? Is it worth spending time and money to develop my own systems to be more in control of things?
\n"
- },
- {
- "tags": [
- "javascript",
- "unit-testing",
- "visual-studio-2010"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6413599,
- "favorite_count": 4,
- "question_timeline_url": "/questions/3827055/timeline",
- "question_comments_url": "/questions/3827055/comments",
- "question_answers_url": "/questions/3827055/answers",
- "question_id": 3827055,
- "owner": {
- "user_id": 50660,
- "user_type": "registered",
- "display_name": "Matthew Manela",
- "reputation": 3812,
- "email_hash": "288e49ea9ee1aa8516598465d9473033"
- },
- "creation_date": 1285809580,
- "last_activity_date": 1308583475,
- "up_vote_count": 11,
- "down_vote_count": 0,
- "view_count": 564,
- "score": 11,
- "community_owned": false,
- "title": "Run JavaScript unit tests inside of Visual Studio 2010",
- "body": "I have been searching for a good way to run JavaScript unit tests inside of the Visual Studio 2010 IDE. I currently use TestDriven.net to run my C# units tests and it is very convenient to be able to quickly get the result of my tests in the output pane. I would love to find a similar experience for JavaScript (ideally working with TestDriven.net).
\n\nI have read about different solutions that let you execute JavaScrpt unit tests. Some have their own JS engine while others like JS-Test-Driver are able to send the code to the browsers and fetch the results. But I have yet to see something that is integrated into VS 2010.
\n\nDoes anyone know of an extension that might do this?
\n"
- },
- {
- "tags": [
- "javascript",
- "dojo",
- "include-path",
- "dojo.data"
- ],
- "answer_count": 1,
- "accepted_answer_id": 6413578,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413327/timeline",
- "question_comments_url": "/questions/6413327/comments",
- "question_answers_url": "/questions/6413327/answers",
- "question_id": 6413327,
- "owner": {
- "user_id": 420613,
- "user_type": "registered",
- "display_name": "imran tariq",
- "reputation": 338,
- "email_hash": "67ebeef7b7b8d5533f5caf77074c62b8"
- },
- "creation_date": 1308582333,
- "last_activity_date": 1308583401,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 7,
- "score": 0,
- "community_owned": false,
- "title": "DOJO include files a directory back",
- "body": "I have dojo files in resources/js/dojo1.6/dojo/dojo.js
\n\nI have another file here resources/js/pages/file1.js
\n\nThis file requires another file which is located at resources/js/folder/file2.js
\n\nThis is how I am including it dojo.require('folder.file2');
\n\nSo these three folder are in hirarchy
\n\ndojo1.6 , pages and folder
\n\nWhen I run application
\n\nI got the following error
\n\nFile not found: /resources/js/dojo1.6/folder/file2.js\n
\n\nHow can I overcome this error.
\n"
- },
- {
- "tags": [
- "php",
- "javascript",
- "ajax",
- "undo-redo"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6394284,
- "favorite_count": 1,
- "question_timeline_url": "/questions/4508230/timeline",
- "question_comments_url": "/questions/4508230/comments",
- "question_answers_url": "/questions/4508230/answers",
- "question_id": 4508230,
- "owner": {
- "user_id": 380403,
- "user_type": "registered",
- "display_name": "Bakaburg",
- "reputation": 112,
- "email_hash": "02c4213274d414cb8da4f34108f355db"
- },
- "creation_date": 1293013795,
- "last_activity_date": 1308583384,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 65,
- "score": 1,
- "community_owned": false,
- "title": "php/ajax user actions undo manager",
- "body": "does exist a library that gives you undo/redo capability with history for a web app? An idea would be a php/javascript/ajax system in which you can register for every user action an opposite action and the variable state (like a normal undo manager!). and it should work both at client level and server level.
\n\nDid i ask too much?
\n"
- },
- {
- "tags": [
- "javascript",
- "extjs",
- "grid",
- "columns",
- "extjs4"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6409972/timeline",
- "question_comments_url": "/questions/6409972/comments",
- "question_answers_url": "/questions/6409972/answers",
- "question_id": 6409972,
- "owner": {
- "user_id": 322251,
- "user_type": "registered",
- "display_name": "shane87",
- "reputation": 469,
- "email_hash": "90611479ceffc2da2d62d5f6134a5565"
- },
- "creation_date": 1308566525,
- "last_activity_date": 1308583282,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "How to dynamically set the grids CheckBox Selection Model in ExtJs4?",
- "body": "This leads on from my previous question . \nI initialize a grid with a CheckBox Selection Model, however when I reconfigure the grid the Check Box Selection Model visaully dissapears. \nWhat I want to do is dynamically add a CheckBox Selection Model to a grid after reconfiguring the grids columns, and visually display it.
\n\nI have tried something like this:
\n\nvar sm = new Ext.selection.CheckboxModel();\ngrid.selModel = sm;\ngrid.doLayout();\n
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413549/timeline",
- "question_comments_url": "/questions/6413549/comments",
- "question_answers_url": "/questions/6413549/answers",
- "question_id": 6413549,
- "owner": {
- "user_id": 806914,
- "user_type": "registered",
- "display_name": "Anthony Burns",
- "reputation": 1,
- "email_hash": "e7334b63d88530e1cdcb1eac6fced20f"
- },
- "creation_date": 1308583263,
- "last_activity_date": 1308583263,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 6,
- "score": 0,
- "community_owned": false,
- "title": "Facebook uid scripts",
- "body": "is there an existing java script to enable admins of trade pages to scan fb uids for know scammers, so we can ban known scammers ids before they managed to join or scam on newer trade pages? im not a scripter in any way but do admin a trade page and as far as i know there is a script but only for sale from another trade page, i was hopeing to get it free, we are growing daily and there are larger sites with larger banned scammers we want to be able to check for these id
sd and ban nefore they can scam on our group page, thank you for any info you can give
\n"
- },
- {
- "tags": [
- "javascript",
- "getelementbyid"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6413526,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413512/timeline",
- "question_comments_url": "/questions/6413512/comments",
- "question_answers_url": "/questions/6413512/answers",
- "question_id": 6413512,
- "owner": {
- "user_id": 604843,
- "user_type": "registered",
- "display_name": "Ryan",
- "reputation": 432,
- "email_hash": "8d618d6102a868921c256b2d798aae45"
- },
- "creation_date": 1308583116,
- "last_activity_date": 1308583232,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 32,
- "score": 1,
- "community_owned": false,
- "title": "Javascript: Weird \"getElementById\"",
- "body": "I have a function that populates a pages with something like this
\n\n<span id=\"span_title_'+result_no+'\">'+title+'</span>\n
\n\nand then I have another function that has this:
\n\n document.getElementById(\"span_title_\"+which_table).innerHTML=\"asg\";\nalert(document.getElementById(\"span_title_\"+which_table).value);\n
\n\nThe strange thing is the first (innerHTML) call works perfectly, the second one, the alert, gives me \"undefined
\"
\n\nAny idea why this is?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 8,
- "accepted_answer_id": 6413302,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413265/timeline",
- "question_comments_url": "/questions/6413265/comments",
- "question_answers_url": "/questions/6413265/answers",
- "question_id": 6413265,
- "owner": {
- "user_id": 256439,
- "user_type": "registered",
- "display_name": "Sandra Schlichting",
- "reputation": 1327,
- "email_hash": "c4b17df9c9b2f33a96eb84f92054f708"
- },
- "creation_date": 1308582073,
- "last_activity_date": 1308583161,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 49,
- "score": 1,
- "community_owned": false,
- "title": "Appending to instead of below . What's wrong?",
- "body": "In this jsFiddle
\n\nhttp://jsfiddle.net/littlesandra88/tZqYX/
\n\nwould I like that a new <tr>
is inserted below the one where \"Details\" is clicked.
\n\nI do
\n\n$('.row').append(\"<tr><td>It worked</td></tr>\");\n
\n\nbut this results in
\n\n<tr class=\"row\">\n <td class=\"edit-column\"><a href=\"javascript:addRemove('7249');\">Details</a> <input value=\"Save\" type=\"submit\"></td>\n<tr><td>It worked</td></tr></tr>\n
\n\nwhere I was hoping for
\n\n<tr class=\"row\">\n <td class=\"edit-column\"><a href=\"javascript:addRemove('7249');\">Details</a> <input value=\"Save\" type=\"submit\"></td>\n</tr>\n<tr><td>It worked</td></tr>\n
\n\nAny idea how to fix this?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "plugins"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411194/timeline",
- "question_comments_url": "/questions/6411194/comments",
- "question_answers_url": "/questions/6411194/answers",
- "question_id": 6411194,
- "owner": {
- "user_id": 42636,
- "user_type": "registered",
- "display_name": "pistacchio",
- "reputation": 2686,
- "email_hash": "1cf6e58dae064fc449e6840ffdb90306"
- },
- "creation_date": 1308573193,
- "last_edit_date": 1308580136,
- "last_activity_date": 1308582994,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 25,
- "score": 2,
- "community_owned": false,
- "title": "Jquery plugin - Tree Context menu",
- "body": "Can you suggest a context-menu plugin that supports nesting menu items? When clicking on an item, if the item has sub-items, it should open a secondary menu.
\n\nEDIT
\n\nLike this but for jquery
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "css",
- "internet-explorer"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6413060,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413018/timeline",
- "question_comments_url": "/questions/6413018/comments",
- "question_answers_url": "/questions/6413018/answers",
- "question_id": 6413018,
- "owner": {
- "user_id": 749288,
- "user_type": "registered",
- "display_name": "sergzach",
- "reputation": 169,
- "email_hash": "50ff6dd1fd1fb4c7fd0a2cee3be9ff0a"
- },
- "creation_date": 1308581059,
- "last_activity_date": 1308582876,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 23,
- "score": 2,
- "community_owned": false,
- "title": "Internet Explorer: how to escape extra carriage return after editing Textarea?",
- "body": "We have a multiline textarea in Internet Explorer.
\n\nIf we check it's content after the next then everything is correct (there are no extra carriage returns in textarea):
\n\ndocument.getElementById( 'text-area' ).value = \"Hello,\\nWorld!\";\n
\n\nBut if we set caret in the beginning position of the second line (in Internet Explorer, not in the code ) and press tab key there is extra carriage character (there is a string dump on keydown below):
\n\nvalue[0]='H'\nvalue[1]='e'\nvalue[2]='l'\nvalue[3]='l'\nvalue[4]='o'\nvalue[5]=','\nvalue[6]='\\r'\nvalue[7]='\\n'\nvalue[8]='W'\nvalue[9]='o'\nvalue[10]='r'\nvalue[11]='l'\nvalue[12]='d'\nvalue[13]='!'\n
\n\nIt's a problem because other browsers don't insert extra carriage return .
\n\nDo you know how to prevent this in Internet Explorer? With help of CSS or Javascript .
\n"
- },
- {
- "tags": [
- "javascript",
- "mysql",
- "php5"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6410224/timeline",
- "question_comments_url": "/questions/6410224/comments",
- "question_answers_url": "/questions/6410224/answers",
- "question_id": 6410224,
- "owner": {
- "user_id": 786591,
- "user_type": "registered",
- "display_name": "Rignesh Tambakuwala",
- "reputation": 1,
- "email_hash": "5faba9a6598ed24d2f1ff4eaaac0cfe8"
- },
- "creation_date": 1308567882,
- "last_activity_date": 1308582858,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 39,
- "score": 0,
- "community_owned": false,
- "title": "to get value from database table into select box",
- "body": "i m creating a combo box which gets value from mysql database table.\n here is a sample code which i m implementing but it will not populates selectbox values.
\n\n mydata +='<div class=\"content nodisplay\"><div class=\"row\"><div class=\"label\" style=\"font-size:22px;\">Subject</div><div class=\"data\">\n<select id=\"fillsubject\" name=\"fillsubject\">';\n$.post(document.URL,qstring,function(data){\n\n var subjects = $(data).filter('.subjects');\n\n $.each(subjects,function(index,value){\n var subid = $(this).attr('id');\n var subname = $(this).text();\n mydata += \"<option value='\"+subid+\"'>\"+subname+\"</option>\";\n //mydata += \"<option value='english'>english</option>\";\n });\n\n});\nmydata +='</select></div></div></div>'; \n
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 2,
- "accepted_answer_id": 4186100,
- "favorite_count": 5,
- "question_timeline_url": "/questions/4185821/timeline",
- "question_comments_url": "/questions/4185821/comments",
- "question_answers_url": "/questions/4185821/answers",
- "question_id": 4185821,
- "owner": {
- "user_id": 425275,
- "user_type": "registered",
- "display_name": "Šime Vidas",
- "reputation": 14281,
- "email_hash": "a9db2cbc6d4e589aec2d25f67771b85e"
- },
- "creation_date": 1289834520,
- "last_edit_date": 1308582811,
- "last_activity_date": 1308582811,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 213,
- "score": 1,
- "community_owned": false,
- "title": "Is it possible to programmatically detect the caret position within a element?",
- "body": "Assuming a regular <input type=text>
text-box with data in it.
\n\nIs it possible to detect (via JavaScript) the position of the text-coursor inside that text-box?
\n\nI am able to detect an ARROW LEFT or ARROW RIGHT keydown event - but how to detect the cursor location?
\n\nWhy I need this:
\n\nI have a dynamic text-box here: http://vidasp.net/tinydemos/dynamic-textbox.html \nIt works great, however there are two scenarios that I would like to fix:
\n\n\nwhen the cursor is at the beginning of the text-box and the user presses BACKSPACE \nwhen the cursor is at the end of the text-box and the user presses DELETE \n \n\n(In both cases, the text-box must contain data for the effect to be observable.)
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "this"
- ],
- "answer_count": 4,
- "accepted_answer_id": 6413378,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6413356/timeline",
- "question_comments_url": "/questions/6413356/comments",
- "question_answers_url": "/questions/6413356/answers",
- "question_id": 6413356,
- "owner": {
- "user_id": 653897,
- "user_type": "registered",
- "display_name": "Briz",
- "reputation": 161,
- "email_hash": "1f396684d672cf556c9e1532c1e0af0a"
- },
- "creation_date": 1308582435,
- "last_activity_date": 1308582807,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 62,
- "score": 0,
- "community_owned": false,
- "title": "What is the \"this\" in an example JS function?",
- "body": "Below is the entire contents of a JS/JQuery file. I didn't write it, but I'm trying to add on to it. I am having trouble understanding what this
is referring to. I haven't seen functions set up in this style before (SmartPhone = function() {}
)
\n\nSmartPhone = function()\n{\n this.miniMap = new GameModeMap();\n\n this.init = function()\n {\n var self=this;\n var $PhoneContainer = $(\"#PhoneContainer\");\n $PhoneContainer.append(\"<div id='PhoneScreen'></div>\");\n $PhoneContainer.append(\"<div class='PhoneButton'></div>\");\n $('.PhoneButton').click(function(){self.toggleClicked()});\n\n this.miniMap.init(\"#PhoneScreen\");\n\n //append the appMenu\n $(\"#PhoneScreen\").append(\"<div id='AppMenu'></div>\");\n $(\"#AppMenu\").hide();\n initMenu();\n //toggleClicked();\n }\n\n this.toggleClicked = function() \n {\n console.log(this);\n $('#PhoneContainer').toggleClass ('clicked');\n $('#PhoneScreen').toggleClass ('vertical');\n this.miniMap.toggle();\n $('#AppMenu').toggle();\n }\n\n this.init();\n}\n
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "visual-studio-2008"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413416/timeline",
- "question_comments_url": "/questions/6413416/comments",
- "question_answers_url": "/questions/6413416/answers",
- "question_id": 6413416,
- "owner": {
- "user_id": 783175,
- "user_type": "registered",
- "display_name": "FishBasketGordo",
- "reputation": 206,
- "email_hash": "1a033f15f829f9d5b590a40dccc66559"
- },
- "creation_date": 1308582722,
- "last_activity_date": 1308582722,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 11,
- "score": 0,
- "community_owned": false,
- "title": "How to sort page elements by z-index while debugging?",
- "body": "I'm debugging a JavaScript method on an ASP.NET 3.5 web site using jQuery in Visual Studio 2008. As a sanity check, I would like to look at a list of the page elements sorted by z-index. What's a good/easy way to do this? I would prefer an expression that I can input into the Watch window, but I'm open to other suggestions.
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "html5",
- "geolocation"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412566/timeline",
- "question_comments_url": "/questions/6412566/comments",
- "question_answers_url": "/questions/6412566/answers",
- "question_id": 6412566,
- "owner": {
- "user_id": 635784,
- "user_type": "registered",
- "display_name": "Codecraft",
- "reputation": 861,
- "email_hash": "e4a1f83ad5fb19e0cfef8d818c4a02c6"
- },
- "creation_date": 1308579152,
- "last_edit_date": 1308582704,
- "last_activity_date": 1308582704,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 16,
- "score": 2,
- "community_owned": false,
- "title": "Determining whether html5 geolocation function is available AND whether it knows where you are?",
- "body": "I'm experimenting with HTML5 geolocation, and embedded a small test script into a page to return my present co-ordinates.
\n\nThe current application I have in mind for using this is as a 'nice to have' feature on site i'm working on - it includes a 'find my nearest' lookup on some locations, and I figured that if you had a location aware device, I could easily include 'to my current location' alongside the normal 'to my postal/zip code'. I'm not interested in loading a bunch of extra libraries and fallbacks for such a small and non-essential feature. If you have a capable device, great, if not, you won't ever see the option.
\n\nSo I tried the script on an iPad, and as expected - I was prompted for permission to use my present location, to which I agreed, and my test script returned my present location. Total win.
\n\nI tried the same on my desktop, since i'm using Firefox 4 and its a HTML5 compliant browser. It asked me if I wanted to share my location, and then promptly returned the error that it didn't know my location (because its a desktop computer and has no GPS). I thought this rendered the original question of 'do you want to share your location' somewhat pointless - it could needlessly annoy people who might have thought they could use a feature that they in fact can't.
\n\nSo, what is a reliable technique to detect if:
\n\n\n a) The browser can access HTML5 geolocation
\n \n AND
\n \n b) The browser knows or can find out what the users location is.
\n \n\nWithout actually calling the geolocation function beforehand, and asking the user an annoying, and unnecessary question?
\n\nFor a) i'm simply using:
\n\nif (navigator.geolocation) {\n navigator.geolocation.getCurrentPosition(showCoords,handleGeoErrors); \n}\n
\n\nBut for b) the only answer I have involves having called getCurrentPosition, which triggers the question to the user.
\n\nAny thoughts on this, anyone?
\n"
- },
- {
- "tags": [
- "javascript",
- "arrays",
- "json",
- "parsing"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6403354/timeline",
- "question_comments_url": "/questions/6403354/comments",
- "question_answers_url": "/questions/6403354/answers",
- "question_id": 6403354,
- "owner": {
- "user_id": 773110,
- "user_type": "registered",
- "display_name": "zalath",
- "reputation": 1,
- "email_hash": "7cc5677dd2e2f4d1cc7b86c52d053ae8"
- },
- "creation_date": 1308497730,
- "last_edit_date": 1308498024,
- "last_activity_date": 1308582656,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 59,
- "score": 0,
- "community_owned": false,
- "title": "javascript : parsing multi-level json array",
- "body": "I have a asp.net web service that returns a multi-level array.
\n\nthe json string is parse using the json2.js lib :
\n\nvar donnee = JSON.parse(msg.d);\n
\n\nthe 1st level parsing is ok but the 2nd level array (data) remains as an array of objects
\n\n\n ? donnee[0]
\n \n\n{...}\ncolor: \"#0000CD\"\ndata: [[object Object],[object Object]]\nlabel: \"formol\"\ntype: \"traitement\"\n
\n\n\n ? donnee[0].data
\n \n\n[[object Object],[object Object]]\n[0]: {...}\n[1]: {...}\n
\n\n\n ? donnee[0].data[0]
\n \n\n{...}\n_l: \"\"\n_x: 7\n_y: 25\n
\n\nwhereas I need an array of data e.g.
\n\n\n ? donnee[0]
\n \n\n{...}\nlabel: \"traitement formol 2\"\ntype: \"traitement\"\ncolor: \"#0000CD\"\ndata: [7,25,,7,40,formol]\n
\n\n\n ? donnee[0].data
\n \n\n[7,25,,7,40,formol]\n[0]: [7,25,]\n[1]: [7,40,formol]\n
\n\n\n ? donnee[0].data[0]
\n \n\n[7,25,]\n[0]: 7\n[1]: 25\n[2]: \"\"\n
\n\nwhat is the best way to decode/parse all the levels of the json string at once ?
\n\nbest regards
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "ajax",
- "post"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6174688/timeline",
- "question_comments_url": "/questions/6174688/comments",
- "question_answers_url": "/questions/6174688/answers",
- "question_id": 6174688,
- "owner": {
- "user_id": 755464,
- "user_type": "registered",
- "display_name": "user755464",
- "reputation": 11,
- "email_hash": "31cbea1bc9ec690e95a60826eb6328a5"
- },
- "creation_date": 1306748840,
- "last_edit_date": 1308582527,
- "last_activity_date": 1308582527,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 35,
- "score": 0,
- "community_owned": false,
- "title": "jquery ajax post call issue with special chracters [solved]",
- "body": "Solution: i guess the problem was related to firefox as a browser. I solved making the ajax call pass through a php proxy..
\n\ni have a form with two data fields (a checkbox and a textarea) sent via an ajax call. \nThe tomcat server response is an html page with some javascript code in it. I must use the POST method given the amount of data to be sent (if i could use GET i woud not have this issue!).\nThe problem arises if i send accented characters (èàòù) throught the textarea, for which i get weird question marks in place of them.\nFrom the firebug console i can see that both sent and received data are utf-8 encoded:
\n\nSENT DATA: Content-Type application/x-www-form-urlencoded; charset=UTF-8 \nRECEIVED DATA: text/html;charset=UTF-8
\n\nThe problem does not show in chrome or IE, but only in firefox and on all browsers on mac. HAve anybody any suggestione about this?
\n\nThanks\nVitto
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413240/timeline",
- "question_comments_url": "/questions/6413240/comments",
- "question_answers_url": "/questions/6413240/answers",
- "question_id": 6413240,
- "owner": {
- "user_id": 414847,
- "user_type": "registered",
- "display_name": "Rene Zammit",
- "reputation": 45,
- "email_hash": "07647a7ad89294eb2527e03afb5e450a"
- },
- "creation_date": 1308581976,
- "last_activity_date": 1308582489,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 11,
- "score": 0,
- "community_owned": false,
- "title": "seperate validation of two forms with jquery",
- "body": "I have two forms in one page and i would like to validate each form seperatly DEPENDING on what the user fills. So basically the user must fill only ONE form and NOT both of them...SO basically if the user fills up form number 1, the validation will be on form 1 ONLY..
\n\nBelow please find the code of both forms:
\n\n <form action=\"/registration.flow\" method=\"post\" id=\"formElem1\" name=\"formElem1\" autocomplete='off'>\n <label for=\"Name_First\">First Name:</label>\n <input type=\"text\" name=\"Name_First\" id=\"Name_First\" value=\"\" class=\"required\" maxlength=\"128\" />\n <label for=\"Name_Last\">Last Name:</label>\n <input type=\"text\" name=\"Name_Last\" id=\"Name_Last\" value=\"\" class=\"required\" maxlength=\"128\" />\n\n <button id=\"registerButton\" type=\"submit\">Register</button>\n</form>\n\n\n<form action=\"/registration.flow\" method=\"post\" id=\"formElem2\" name=\"formElem2\" autocomplete='off'>\n <label for=\"Name_First\">First Name:</label>\n <input type=\"text\" name=\"Name_First\" id=\"Name_First\" value=\"\" class=\"required\" maxlength=\"128\" />\n <label for=\"Name_Last\">Last Name:</label>\n <input type=\"text\" name=\"Name_Last\" id=\"Name_Last\" value=\"\" class=\"required\" maxlength=\"128\" />\n\n <button id=\"registerButton\" type=\"submit\">Register</button>\n</form>\n
\n\nCan someone help me please?? THANKS
\n"
- },
- {
- "tags": [
- "javascript",
- "coffeescript"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412151/timeline",
- "question_comments_url": "/questions/6412151/comments",
- "question_answers_url": "/questions/6412151/answers",
- "question_id": 6412151,
- "owner": {
- "user_id": 353998,
- "user_type": "registered",
- "display_name": "magicshui",
- "reputation": 53,
- "email_hash": "61848af6a10034cf09426b843e01efc3"
- },
- "creation_date": 1308577423,
- "last_activity_date": 1308582484,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 26,
- "score": 0,
- "community_owned": false,
- "title": "why does the bracket works in coffeescript when bugs came",
- "body": "If i want to get a js code like this which compiles from coffeescript:
\n\n var sortableTodos = new Sortables(\"todo-list\", {\nconstrain: true,\nclone: true,\nhandle: \".todo-content\",\nonComplete: function(ele){\n sortableTodos.serialize(false, function(element, index){\n todo = Todos.get(element.getProperty(\"id\").replace(\"todo-\", \"\"));\n todo.save({\"order\": index});\n });\n}\n});\n
\n\nI can't write coffee code like below:
\n\nsortableTodos = new Sortables(\n\"todo-list\"\n(\n constrain: true\n handle: '.todo-content'\n onComplete:(ele)->\n sortableTodos.serialize false, (element,index)->\n todo = Todos.get(element.getProperty(\"id\")).replace(\"todo-\",\"\")\n todo.save(\"order\":index)\n\n) \n )\n
\n\nbut the following works(it got brackets after onComplete )
\n\nsortableTodos = new Sortables(\n\"todo-list\"\n(\n constrain: true\n handle: '.todo-content'\n onComplete:((ele)->\n sortableTodos.serialize false, (element,index)->\n todo = Todos.get(element.getProperty(\"id\")).replace(\"todo-\",\"\")\n todo.save(\"order\":index)\n )\n) \n ) \n
\n\nI don't know why?Is it a bug?
\n"
- },
- {
- "tags": [
- "javascript",
- "flash",
- "hash",
- "webgl",
- "sha256"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6395651/timeline",
- "question_comments_url": "/questions/6395651/comments",
- "question_answers_url": "/questions/6395651/answers",
- "question_id": 6395651,
- "owner": {
- "user_id": 45974,
- "user_type": "registered",
- "display_name": "Tom",
- "reputation": 1068,
- "email_hash": "04361eba6e039eecdd3458e2545f03e6"
- },
- "creation_date": 1308396487,
- "last_activity_date": 1308582417,
- "up_vote_count": 3,
- "down_vote_count": 0,
- "view_count": 46,
- "score": 3,
- "community_owned": false,
- "title": "Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?",
- "body": "Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?
\n\nI'm afraid this is all there is to ask, but if more elaboration is needed please do not hesitate to tell me in a comment.
\n\nThanks.
\n"
- },
- {
- "tags": [
- "java",
- "javascript",
- "web-services",
- "redirect",
- "login"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6412531,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6412428/timeline",
- "question_comments_url": "/questions/6412428/comments",
- "question_answers_url": "/questions/6412428/answers",
- "question_id": 6412428,
- "owner": {
- "user_id": 769655,
- "user_type": "registered",
- "display_name": "ZKSteffel",
- "reputation": 172,
- "email_hash": "3939a271af7fae22f6400b61c0d14c73"
- },
- "creation_date": 1308578567,
- "last_activity_date": 1308582340,
- "up_vote_count": 3,
- "down_vote_count": 0,
- "view_count": 44,
- "score": 3,
- "community_owned": false,
- "title": "Login page redirection in Java and Javascript",
- "body": "Ok, so I've got an interesting case of login page redirection going on. \nMy webservice has a login page (login.html) with some javascript to handle logging in and redirecting to a hardcoded 'default' page. The webservice is written in Java with a servlet filter handling redirection if a user is unauthenticated (so if a user tries to access domain/statistics
without being logged in, they are directed to domain/login.html
). The redirection from the protected services works: I can redirect to the login page and once a user is authenticated, redirect them to a default page. I am having issues, however, redirecting to the previous page. \nI know this is usually handled with the argument document.referrer
in the Javascript, which I have tried, but due to the Java's redirection with response.sendRedirect
, the Referer header is not sent.
\n\nHow can I get these two aspects to redirect to the previously called page? Is it something I need to add on the Javascript side, the Java side, or both?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "html",
- "css",
- "menu"
- ],
- "answer_count": 2,
- "accepted_answer_id": 6412674,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6294393/timeline",
- "question_comments_url": "/questions/6294393/comments",
- "question_answers_url": "/questions/6294393/answers",
- "question_id": 6294393,
- "owner": {
- "user_id": 658809,
- "user_type": "registered",
- "display_name": "Ryan Sammut",
- "reputation": 91,
- "email_hash": "72bfcaf32b3480f5cecb438684cabb92"
- },
- "creation_date": 1307629500,
- "last_edit_date": 1308141521,
- "last_activity_date": 1308582283,
- "up_vote_count": 0,
- "down_vote_count": 1,
- "view_count": 56,
- "score": -1,
- "community_owned": false,
- "title": "Navigation Menu Hover Effect only on a Particular Occasion",
- "body": "I need the exact effect of this website's navigation menu http://recruitmentmalta.com/ptowers/ but in neater code. This code was generated with a tool which converts from PSD to HTML/CSS and basically created a bunch of useless code. I know how to make that menu, except for the part where the Shop Now effect should turn off only if the contact is hovered over.
\n\nAny ideas of how I can recreate that hovering off effect when I hover over the contact button (when Shop Now gets turned off)?
\n\nThis is what I have done so far to give you an idea
\n\n <ul>\n <li id=\"homeButton\"> <img src=\"images/home.png\" onmouseout=\"this.src='images/home.png'\" onmouseover=\"this.src='images/homeHover.png'\" width=\"115\" height=\"55\" alt=\"home\" /></li>\n <li id=\"aboutButton\"> <img src=\"images/about.png\" onmouseout=\"this.src='images/about.png'\" onmouseover=\"this.src='images/aboutHover.png'\" width=\"115\" height=\"55\" alt=\"about\" /></li>\n <li id=\"newsButton\"> <img src=\"images/news.png\" onmouseout=\"this.src='images/news.png'\" onmouseover=\"this.src='images/newsHover.png'\" width=\"115\" height=\"55\" alt=\"news\" /></li>\n <li id=\"brandsButton\"> <img src=\"images/brands.png\" onmouseout=\"this.src='images/brands.png'\" onmouseover=\"this.src='images/brandsHover.png'\" width=\"115\" height=\"55\" alt=\"brands\" /></li>\n <li id=\"storesButton\"> <img src=\"images/stores.png\" onmouseout=\"this.src='images/stores.png'\" onmouseover=\"this.src='images/storesHover.png'\" width=\"115\" height=\"55\" alt=\"stores\" /></li>\n <li id=\"careersButton\"> <img src=\"images/careers.png\" onmouseout=\"this.src='images/careers.png'\" onmouseover=\"this.src='images/careersHover.png'\" width=\"115\" height=\"55\" alt=\"careers\" /></li>\n <li id=\"contactButtonMenu\"> <img src=\"images/contactButton.png\" onmouseout=\"this.src='images/contactButton.png'\" onmouseover=\"this.src='images/contactButtonHover.png'\" width=\"115\" height=\"55\" alt=\"contact\" /></li>\n <li id=\"shopNowButton\"> <img src=\"images/shopNowHover.png\" width=\"114\" height=\"53\" alt=\"Shop Now\" /> </li>\n </ul>\n
\n\nThis is my JS Fiddle Link: http://jsfiddle.net/GHHJM/
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "replace",
- "body"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411169/timeline",
- "question_comments_url": "/questions/6411169/comments",
- "question_answers_url": "/questions/6411169/answers",
- "question_id": 6411169,
- "owner": {
- "user_id": 806325,
- "user_type": "registered",
- "display_name": "Mohummad Abdullah",
- "reputation": 1,
- "email_hash": "be926689bf46ab9f3b0331cc985c469b"
- },
- "creation_date": 1308573088,
- "last_edit_date": 1308582247,
- "last_activity_date": 1308582247,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 35,
- "score": 0,
- "community_owned": false,
- "title": "Javascript replace undefined error ends but not replace continues",
- "body": "Friends i got success with this piece of code:
\n\nvar avidno = '800.123.1234';\nvar bodytext = document.body.innerHTML;\nvar newbodytext;\nfunction validate () {\nvar regex = /^\\(?([0-9]{3})\\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$/;\n\nif (regex.test(avidno)) {\n alert('bingo');\n var avidno_new = '<span>'+avidno+'</span>';\n var newbodytext = bodytext.replace(new RegExp(avidno, \"g\"), avidno_new);\n document.body.innerHTML = newbodytext;\n // Valid international phone number\n} else {\n alert('uupss');\n // Invalid international phone number\n}\n}\nvalidate();\n
\n"
- },
- {
- "tags": [
- "javascript",
- "android"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/3802824/timeline",
- "question_comments_url": "/questions/3802824/comments",
- "question_answers_url": "/questions/3802824/answers",
- "question_id": 3802824,
- "owner": {
- "user_id": 459357,
- "user_type": "unregistered",
- "display_name": "Krishnakumar",
- "reputation": 1,
- "email_hash": "cb35faaf6bb76341164d7568101e394c"
- },
- "creation_date": 1285582330,
- "last_edit_date": 1285592315,
- "last_activity_date": 1308582222,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 164,
- "score": 0,
- "community_owned": false,
- "title": "Problem opening page with javascript pop ups in android webview",
- "body": "I am very new to both Android WebKit and JavaScript. I have a web page with 3 links (say A,B,C). When I open that page on my PC browser(Chrome) and click on the links, A opens in the same browser window, whereas B and C pops up a new window. In my android application I am \nloading the original URL in a WebView. I have implemented my WebViewClient and overridden the shouldOverrideUrlLoading
. I am getting the call to shouldOverrideUrlLoading
whenever I click on A, but not getting it when I click on B or C?
\n\nI went through the page source and it looks like the 2 links that are \nnot supported are opened as IFRAMEs. are IFRAMEs supported by WebView?
\n\nThanks
\n\nKK
\n"
- },
- {
- "tags": [
- "javascript",
- "string-manipulation"
- ],
- "answer_count": 2,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412993/timeline",
- "question_comments_url": "/questions/6412993/comments",
- "question_answers_url": "/questions/6412993/answers",
- "question_id": 6412993,
- "owner": {
- "user_id": 806849,
- "user_type": "unregistered",
- "display_name": "Dom",
- "reputation": 1,
- "email_hash": "8d7165905cf94796ea496370004f8520"
- },
- "creation_date": 1308580967,
- "last_activity_date": 1308581830,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 36,
- "score": 0,
- "community_owned": false,
- "title": "How do I remove the hyphens in this string (more complex than it sounds!)",
- "body": "I must first confess that I understand very little JS and this is a bastardised version of some code I picked up elsewhere. Essentially it runs through a collection of list-items and extracts their class names (which are being populated by a CMS to reflect for example \"Brand\" or \"Manufacturer\") builds them into a string, splits the string into arrays and dedupes them. It then creates a list of unique check boxes based on the class name which, when selected or deselected, filters the list-items on the page using jquery.
\n\nMy problem is, that because the string of class names is being split by a 'space' if the value of the class consists of multiple-words the values populating the class must be hyphenated.
\n\nBUT... when the label for the checkbox is generated on the page by the script I wonder if it is possible to remove the hyphen without upsetting the logic generating it.
\n\nHere is the code I have so far, if you drop this into an HTML file you will see how it works (the jquery file is hosted elsewhere).
\n\nAny help would be highly appreciated!
\n\n<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\"> \n<html>\n<head>\n\n<script type=\"text/javascript\" src=\"http://www.chewbz.com/jquery-1.4.3.min.js\"></script>\n<script type=\"text/javascript\"> \n/**\n * Removes duplicates in the array 'a'\n */\nfunction unique(a) {\n tmp = new Array(0);\n for(i=0;i<a.length;i++){\n if(!contains(tmp, a[i])){\n tmp.length+=1;\n tmp[tmp.length-1]=a[i];\n }\n }\n return tmp;\n}\n\n/**\n * Returns true if 's' is contained in the array 'a'\n */\n\nfunction contains(a, e) {\n for(j=0;j<a.length;j++)if(a[j]==e)return true;\n return false;\n}\n\n$(document).ready(function () {\n // create a string of class names, \n var stringOfClassNames = '';\n\n // grab the class name of each list item to build that string\n $('.filterThis > li').each( function (i) {\n var thisClassString = $(this).attr('class');\n stringOfClassNames = stringOfClassNames +' '+ thisClassString\n });\n\n // Trim spaces from the ends of that string:\n stringOfClassNames = jQuery.trim(stringOfClassNames);\n\n // convert the string to an array.\n var arrayClasses = stringOfClassNames.split(' ');\n\n // pull out only unique values from that array\n arrayUniqueClasses = (unique(arrayClasses));\n\n // we only want to create filters if there are multiple classes\n if (arrayUniqueClasses.length > 1) {\n\n // create box for filters\n $('<div class=\"filters\" id=\"filters\"><\\/div>').insertBefore('.filterThis');\n\n // create the filter checkboxes based on all the class names\n $.each(arrayUniqueClasses, function() {\n $('<div class=\"filter-options\"><input type=\"checkbox\" checked=\"checked\" value=\"'+this+'\" class=\"filter-checkbox\" id=\"filterID'+this+'\" />'+this+'<\\/div>').appendTo('.filters');\n });\n\n // create a 'show all' checkbox\n $('<div class=\"filter-options-all\"><input type=\"checkbox\" checked=\"checked\" value=\"filterAll\" class=\"filter-checkbox\" id=\"filterIDall\" />Show All<\\/div>').appendTo('.filters');\n\n // create a close button\n $('<img src=\"\" id=\"filter-close\" onClick=\"document.getElementById(\\'filters\\').style.display = \\'none\\'\"><\\/div>').appendTo('.filters');\n\n // the filter part\n $('.filters input').click( function() {\n var value= $(this).val();\n if (value == 'filterAll') {\n if ($(this).is(':checked')) {\n $('.filters input').attr('checked','checked');\n $('.filterThis li').fadeIn();\n } else {\n var one=1;\n }\n } else {\n stringValue = '.filterThis > li.'+value;\n if ($(this).is(':checked')) {\n $(stringValue).fadeIn();\n } else {\n $(stringValue).fadeOut();\n $('.filters #filterIDall').removeAttr('checked');\n }\n }\n });\n }\n});\n</script> \n\n</head>\n<body>\n\n<style>\n<!-- \nul.filterThis {\nlist-style-type:none;\n}\nul.filterThis li {\nwidth:200px;height:200px;background:#eee;border:solid 1px #ccc;float:left;margin:10px;\n}\n-->\n</style>\n\n<ul class=\"filterThis\">\n\n <li class=\"Medium-Jars\">\n <div class=\"product-container\">\n Medium Jars\n </div>\n </li>\n\n <li class=\"Large-Jars\">\n <div class=\"product-container\">\n Large Jars\n </div>\n </li>\n\n <li class=\"Sweets\">\n <div class=\"product-container\">\n Sweets\n </div>\n </li>\n\n <li class=\"Medium-Jars\">\n <div class=\"product-container\">\n Medium Jars\n </div>\n </li>\n\n <li class=\"Sweets\">\n <div class=\"product-container\">\n Sweets\n </div>\n </li>\n\n</ul>\n\n\n</body>\n\n</html>\n
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery"
- ],
- "answer_count": 1,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6403728/timeline",
- "question_comments_url": "/questions/6403728/comments",
- "question_answers_url": "/questions/6403728/answers",
- "question_id": 6403728,
- "owner": {
- "user_id": 484082,
- "user_type": "registered",
- "display_name": "blasteralfred",
- "reputation": 505,
- "email_hash": "cd867e89325fe74445707fb6b4364be8"
- },
- "creation_date": 1308502054,
- "last_edit_date": 1308581714,
- "last_activity_date": 1308581714,
- "up_vote_count": 0,
- "down_vote_count": 1,
- "view_count": 50,
- "score": -1,
- "community_owned": false,
- "title": "Set table cell width using Javascript - jQuery",
- "body": "I have a table as below;
\n\n<table style=\"width: 100%\">\n<tr>\n<td style=\"width: 30px\">cell</td>\n<td class=\"cell\">cell</td>\n<td class=\"cell\">cellcell</td>\n<td class=\"cell\">cellcellcell</td>\n<td class=\"cell\">cellcellcellcell</td>\n<td class=\"cell\">cellcellcellcellcell</td>\n<td class=\"cell\">cellcellcellcellcellcell</td>\n<td style=\"width: 30px\">cell</td>\n</tr>\n</table>\n
\n\nThe table is designed to stretch to screen (or a div having specific width). I want equal width for all cells having class=\"cell\"
and this works well when the character length of text in all cells having class=\"cell\"
are equal. But, I want to fix the cell width even if the character lengths of contents in class=\"cell\"
are different.
\n\nAlso you can see that the first and last cells have fixed width, in pixels and others cell widths are to be calculated on the basis of percentage .. I want equal width for all cells (except first and last with fixed width in pixels).
\n\nI think this can be done using javascript
with the help of jQuery
, by calculating the table cell widths on document ready, and then adding some function using on window resize
and thereby calculating cell widths. The cell widths will be (tablewidth in px - 60px)/6
I am a beginner and I don't know much.. How can i do this using jQuery and (or) javascript.
\n\nIt will be very helpful if someone make me a fiddle..
\n\nThanks in advance..
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 5,
- "favorite_count": 2,
- "question_timeline_url": "/questions/6412589/timeline",
- "question_comments_url": "/questions/6412589/comments",
- "question_answers_url": "/questions/6412589/answers",
- "question_id": 6412589,
- "owner": {
- "user_id": 206403,
- "user_type": "registered",
- "display_name": "Rocket",
- "reputation": 9270,
- "email_hash": "31975d063f893b2551f6f7d5ed6bfa8e"
- },
- "creation_date": 1308579273,
- "last_activity_date": 1308581680,
- "up_vote_count": 4,
- "down_vote_count": 0,
- "view_count": 46,
- "score": 4,
- "community_owned": false,
- "title": "Set length property of JavaScript object",
- "body": "Let's say I have a JavaScript object:
\n\nfunction a(){\n var A = [];\n this.length = function(){\n return A.length;\n };\n this.add = function(x){\n A.push(x);\n };\n this.remove = function(){\n return A.pop();\n };\n};\n
\n\nI can use it like so:
\n\nvar x = new a();\nx.add(3);\nx.add(4);\nalert(x.length()); // 2\nalert(x.remove()); // 4\nalert(x.length()); // 1\n
\n\nI was trying to make .length
not a function, so I could access it like this: x.length
, but I've had no luck in getting this to work.
\n\nI tried this, but it outputs 0
, because that's the length of A
at the time:
\n\nfunction a(){\n var A = [];\n this.length = A.length;\n //rest of the function...\n};\n
\n\nI also tried this, and it also outputs 0
:
\n\nfunction a(){\n var A = [];\n this.length = function(){\n return A.length;\n }();\n //rest of the function...\n};\n
\n\nHow do I get x.length
to output the correct length of the array inside in the object?
\n"
- },
- {
- "tags": [
- "javascript",
- "prototypejs"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412259/timeline",
- "question_comments_url": "/questions/6412259/comments",
- "question_answers_url": "/questions/6412259/answers",
- "question_id": 6412259,
- "owner": {
- "user_id": 789241,
- "user_type": "unregistered",
- "display_name": "ken",
- "reputation": 16,
- "email_hash": "e4a035242c5843420c0c1bf20daddb97"
- },
- "creation_date": 1308577835,
- "last_edit_date": 1308581548,
- "last_activity_date": 1308581548,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 42,
- "score": 1,
- "community_owned": false,
- "title": "Prototype.js error - 'undefined' is null or not an object",
- "body": "I am getting following error in Prototype.js
\n\n'undefined' is null or not an object line 5557 char 5\n
\n\nwhich is this:
\n\nvar respondersForEvent = registry.get(eventName);\n if (Object.isUndefined(respondersForEvent)) {\n respondersForEvent = [];\n registry.set(eventName, respondersForEvent);\n }\n
\n\nHow can i fix this?
\n"
- },
- {
- "tags": [
- "javascript",
- "content",
- "clipboard",
- "paste"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6413036/timeline",
- "question_comments_url": "/questions/6413036/comments",
- "question_answers_url": "/questions/6413036/answers",
- "question_id": 6413036,
- "owner": {
- "user_id": 151377,
- "user_type": "registered",
- "display_name": "Gabriele Cirulli",
- "reputation": 305,
- "email_hash": "76706ad194800ea2645a109190baa5a4"
- },
- "creation_date": 1308581144,
- "last_activity_date": 1308581461,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 13,
- "score": 0,
- "community_owned": false,
- "title": "Get current clipboard content?",
- "body": "I'd like to know a way to make my script detect the content of the clipboard and paste it into a text field when the page is opened, with no input from the user. How can it be done?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "jquery-plugins"
- ],
- "answer_count": 5,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412997/timeline",
- "question_comments_url": "/questions/6412997/comments",
- "question_answers_url": "/questions/6412997/answers",
- "question_id": 6412997,
- "owner": {
- "user_id": 806850,
- "user_type": "unregistered",
- "display_name": "Rob",
- "reputation": 1,
- "email_hash": "d4f2c42b9bf234c7c5e5c6af0fb373a3"
- },
- "creation_date": 1308580980,
- "last_activity_date": 1308581418,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 33,
- "score": 0,
- "community_owned": false,
- "title": "Add divs between divs in jQuery",
- "body": "I'm working with a great jQuery plugin (booklet) , and pages of the booklet are defined as so:
\n\n<div id=\"mybook2\">\n <div class=\"b-load\">\n <div> \n <h3>Yay, Page 1!</h3>\n </div>\n <div> \n <h3>Yay, Page 2!</h3>\n </div>\n <div> \n <h3>Yay, Page 3!</h3>\n </div>\n <div> \n <h3>Yay, Page 4!</h3>\n </div>\n </div>\n</div>\n
\n\nI want to add a div before each one of the pages (all the divs in div class=\"b-load\").
\n\nHow would I add it? .prepend? I'm not sure what to do here, I've never worked with jQuery or javascript at all, really.
\n"
- },
- {
- "tags": [
- "javascript",
- "count",
- "script"
- ],
- "answer_count": 4,
- "accepted_answer_id": 6411767,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411637/timeline",
- "question_comments_url": "/questions/6411637/comments",
- "question_answers_url": "/questions/6411637/answers",
- "question_id": 6411637,
- "owner": {
- "user_id": 581345,
- "user_type": "registered",
- "display_name": "Tobias",
- "reputation": 37,
- "email_hash": "56ad21e0912e6810378c035c51dcc46e"
- },
- "creation_date": 1308575424,
- "last_edit_date": 1308581410,
- "last_activity_date": 1308581410,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 56,
- "score": 1,
- "community_owned": false,
- "title": "Javascript count number of steps",
- "body": "How can I count number of steps between different numbers.
\n\nI have a method that takes a number and runs a code snippet with the number. I need to see if the number is the number right next to the other or two steps, three steps, four steps over or below etc.
\n\nEx. I send a number of 1 to the method. The next number sent is 4. I then need to find out how many steps over one it is etc in this case 3 steps over 1 should be the result.
\n\nAny clues?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "ajax",
- "rss"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412753/timeline",
- "question_comments_url": "/questions/6412753/comments",
- "question_answers_url": "/questions/6412753/answers",
- "question_id": 6412753,
- "owner": {
- "user_id": 797954,
- "user_type": "registered",
- "display_name": "Jack Sharpe",
- "reputation": 1,
- "email_hash": "3dadeb26ed5bb578fc0385a8def93699"
- },
- "creation_date": 1308579981,
- "last_edit_date": 1308580880,
- "last_activity_date": 1308581345,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 22,
- "score": 0,
- "community_owned": false,
- "title": "Ajax RSS reader",
- "body": "I am wanting to write a small application that can pull RSS feeds from any RSS feed url. if anyone could give me very basic help on how to achieve this?
\n\nim only really starting out in the world on AJAX and this kinda stuff so any help would be appreciated.
\n\nThanks
\n\nEDIT :- I am only trying to do this with Jquery and Ajax, I dont want to use PHP or any other server side code.
\n"
- },
- {
- "tags": [
- "javascript",
- "ipad",
- "ios",
- "webview"
- ],
- "answer_count": 4,
- "accepted_answer_id": 4462361,
- "favorite_count": 0,
- "question_timeline_url": "/questions/4460205/timeline",
- "question_comments_url": "/questions/4460205/comments",
- "question_answers_url": "/questions/4460205/answers",
- "question_id": 4460205,
- "owner": {
- "user_id": 435413,
- "user_type": "registered",
- "display_name": "sod",
- "reputation": 852,
- "email_hash": "9239a13c2e8049a26f32fe3d4367b58c"
- },
- "creation_date": 1292498400,
- "last_activity_date": 1308581270,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 522,
- "score": 2,
- "community_owned": false,
- "title": "detect ipad/iphone webview via javascript",
- "body": "Is there a way to differ via javascript if the website runs inside the ipad safari or inside an application WebView?
\n"
- },
- {
- "tags": [
- "javascript",
- "html",
- "dom"
- ],
- "answer_count": 11,
- "accepted_answer_id": 78945,
- "favorite_count": 1,
- "question_timeline_url": "/questions/78932/timeline",
- "question_comments_url": "/questions/78932/comments",
- "question_answers_url": "/questions/78932/answers",
- "question_id": 78932,
- "owner": {
- "user_id": 6340,
- "user_type": "registered",
- "display_name": "brass-kazoo",
- "reputation": 1337,
- "email_hash": "aeca5f30afc60a8429e24b9b42f8c9df"
- },
- "creation_date": 1221614884,
- "last_edit_date": 1308581167,
- "last_activity_date": 1308581167,
- "up_vote_count": 3,
- "down_vote_count": 0,
- "view_count": 13743,
- "score": 3,
- "community_owned": false,
- "title": "How do I programatically set the value of a select box element using javascript?",
- "body": "I have the following HTML select element:
\n\n<select id=\"leaveCode\" name=\"leaveCode\">\n <option value=\"10\">Annual Leave</option>\n <option value=\"11\">Medical Leave</option>\n <option value=\"14\">Long Service</option>\n <option value=\"17\">Leave Without Pay</option>\n</select>\n
\n\nUsing a javascript function with the leave code number as a parameter, how do I select the appropriate option in the list?
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "events",
- "javascript-events"
- ],
- "answer_count": 5,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412863/timeline",
- "question_comments_url": "/questions/6412863/comments",
- "question_answers_url": "/questions/6412863/answers",
- "question_id": 6412863,
- "owner": {
- "user_id": 516629,
- "user_type": "registered",
- "display_name": "pagewil",
- "reputation": 950,
- "email_hash": "cdee7bd13ac26fdbb617a4b74170c53c"
- },
- "creation_date": 1308580401,
- "last_activity_date": 1308581131,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 27,
- "score": 0,
- "community_owned": false,
- "title": "jQuery: Two elements using the same event function.",
- "body": "What is the best way to share one function between two different event handlers? I want the same outcome but some situation dependent variables will need to be defined within the function depending on which element was clicked.
\n\nI could hack a solution but want to know the best practice for such a scenario. Simple problem must have a simple answer...
\n\nEXAMPLE
\n\nvar onMyEvent = function(e){\n if(click triggered from 'a'){\n //do that \n } \n if(click triggered from 'div'){\n //do that\n } \n}\n\n\n$('a').click(onMyEvent);\n$('div').click(onMyEvent);\n
\n\nFIDDLE: http://jsfiddle.net/f6C92/
\n"
- },
- {
- "tags": [
- "javascript",
- "autocomplete",
- "dojo",
- "jquery-autocomplete"
- ],
- "answer_count": 0,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6396782/timeline",
- "question_comments_url": "/questions/6396782/comments",
- "question_answers_url": "/questions/6396782/answers",
- "question_id": 6396782,
- "owner": {
- "user_id": 556124,
- "user_type": "registered",
- "display_name": "Boopathi Rajaa",
- "reputation": 149,
- "email_hash": "2596022781bb27a84583b7454954ee96"
- },
- "creation_date": 1308408565,
- "last_edit_date": 1308580936,
- "last_activity_date": 1308580936,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 14,
- "score": 0,
- "community_owned": false,
- "title": "Facebook style autocomplete using dojo needed.",
- "body": "I found facebook style autocomplete using jQuery. But im using dojo framework for my web app. Can you suggest how to implement or any open source code available for autocomplete using dojo framework. ?
\n\nUsing jquery :
\n\nhttp://devthought.com/wp-content/articles/autocompletelist/test.html
\n"
- },
- {
- "tags": [
- "javascript",
- "css",
- "nan",
- "parseint"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411636/timeline",
- "question_comments_url": "/questions/6411636/comments",
- "question_answers_url": "/questions/6411636/answers",
- "question_id": 6411636,
- "owner": {
- "user_id": 334460,
- "user_type": "registered",
- "display_name": "robf92",
- "reputation": 28,
- "email_hash": "db83131e229b650a3a474923cb163211"
- },
- "creation_date": 1308575417,
- "last_edit_date": 1308575997,
- "last_activity_date": 1308580918,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 45,
- "score": 0,
- "community_owned": false,
- "title": "Javascript slider problem",
- "body": "Hi I am currently working on a script given to me by my boss and it is not working in all browsers except IE.
\n\nNow he is using the CSS property left to animate it so he has a variable which gets the current value of left. For example lets say left is equal to -100px
.
\n\nNow once it has this value it adds 10px
onto the value to make it move in from the left.
\n\nNow my issue lies with parseInt()
and the \"px\"
prefix at the end of the number. it keeps returning NaN
instead of the value of left.
\n\nDoes anyone know how to fix this problem?
\n\nThanks in advance
\n"
- },
- {
- "tags": [
- "javascript",
- "forms"
- ],
- "answer_count": 4,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412913/timeline",
- "question_comments_url": "/questions/6412913/comments",
- "question_answers_url": "/questions/6412913/answers",
- "question_id": 6412913,
- "owner": {
- "user_id": 779189,
- "user_type": "unregistered",
- "display_name": "Bifterss",
- "reputation": 29,
- "email_hash": "59ee510a7de8f4c199ff6c44c02274bb"
- },
- "creation_date": 1308580600,
- "last_edit_date": 1308580690,
- "last_activity_date": 1308580894,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 46,
- "score": 0,
- "community_owned": false,
- "title": "Javascript return false, still submits form",
- "body": "I have a form with JS validation, upon there being an error, the submit button should 'grey-out' and the form should not be submitted, however the last couple of functions seem to submit the form even though they pop the alert box!?!?!
\n\nButton code:
\n\n<input type=\"submit\" name=\"button\" id=\"button\" \n onclick='return formvalidation();' value=\"Next\" />\n
\n\nNon Working Function Example:
\n\nfunction BlankSite() {\n var SiteNum= document.getElementsByName(\"sitesinput\")[0].value;\n if ((SiteNum == \"\") || (SiteNum == 0))\n {\n alert(\"You have not selected an amount of sites.\")\n document.forms[0].button.disabled=true;\n return false;\n }\n }\n
\n\nFunction initiator:
\n\nfunction formvalidation()\n{\n ZeroPhones();\n BlankPC();\n BlankSite();\n BlankSeats();\n phone_change();\n}// End of formvalidation\n
\n\nThis is very strange and I have tried various work arounds all to no avail!
\n\nThanks,\nB.
\n"
- },
- {
- "tags": [
- "javascript"
- ],
- "answer_count": 4,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411574/timeline",
- "question_comments_url": "/questions/6411574/comments",
- "question_answers_url": "/questions/6411574/answers",
- "question_id": 6411574,
- "owner": {
- "user_id": 231957,
- "user_type": "registered",
- "display_name": "Luc",
- "reputation": 734,
- "email_hash": "67db701d6a4e067c6aeeca5dec7a82ef"
- },
- "creation_date": 1308575128,
- "last_edit_date": 1308575197,
- "last_activity_date": 1308580813,
- "up_vote_count": 3,
- "down_vote_count": 1,
- "view_count": 63,
- "score": 2,
- "community_owned": false,
- "title": "Resources that turns a javascript developer into a great javascript developer ?",
- "body": "I am more and more working with javascript, especially with JQuery for web site and node.js for server side (really like node.js though) and I quite often struggle to understand the inner structure of the language (such as prototypes, asynchronous function, ...).
\n\nWhat are the best articles, or so, that could help a developer to leverage his competency in this language (that is really worth learning IMHO).
\n"
- },
- {
- "tags": [
- "javascript",
- "node.js",
- "prototype"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6402016,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6401946/timeline",
- "question_comments_url": "/questions/6401946/comments",
- "question_answers_url": "/questions/6401946/answers",
- "question_id": 6401946,
- "owner": {
- "user_id": 568785,
- "user_type": "registered",
- "display_name": "PhpMyCoder",
- "reputation": 672,
- "email_hash": "88c6371f6a47841abde4c60dd8a2f964"
- },
- "creation_date": 1308480840,
- "last_edit_date": 1308580791,
- "last_activity_date": 1308580791,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 28,
- "score": 1,
- "community_owned": false,
- "title": "Prototyping Built-In Modules in NodeJS",
- "body": "I've been trying to add some convenience functions to Node's file system module (mainly because it lacks some common sense things), but every time I begin fs.prototype.myfunc =
in the repl, Node complains that I am trying to set a property of an undefined variable. Is it really true that you cannot access Node's built-in module prototypes from the outside? If so, does anyone know a feasible workaround to extend Node's built-in modules?
\n\n--Thanks!
\n\n \n\nJust to note: I did require fs before trying to prototype it!
\n\nvar fs = require('fs');\nfs.prototype.myfunc = function() {}; //TypeError thrown here\n
\n"
- },
- {
- "tags": [
- "javascript",
- "html"
- ],
- "answer_count": 3,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411282/timeline",
- "question_comments_url": "/questions/6411282/comments",
- "question_answers_url": "/questions/6411282/answers",
- "question_id": 6411282,
- "owner": {
- "user_id": 578523,
- "user_type": "registered",
- "display_name": "Marcos ",
- "reputation": 660,
- "email_hash": "00c4b6dae0d342a11e70e4982440f9e6"
- },
- "creation_date": 1308573611,
- "last_edit_date": 1308574791,
- "last_activity_date": 1308580646,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 50,
- "score": 0,
- "community_owned": false,
- "title": "How to lock scrolling of a web page temporarily?",
- "body": "How can I lock scrolling of a webpage temporarily when a dialog box is displayed ? I have a dialog box within which I want to enable scrolling after deactivating scrolling from the overlayed webpage .
\n\nIs there a js command to temporarily disable scrolling ?
\n"
- },
- {
- "tags": [
- "javascript",
- "ruby-on-rails",
- "nested-forms"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6411778/timeline",
- "question_comments_url": "/questions/6411778/comments",
- "question_answers_url": "/questions/6411778/answers",
- "question_id": 6411778,
- "owner": {
- "user_id": 806695,
- "user_type": "unregistered",
- "display_name": "bla12",
- "reputation": 1,
- "email_hash": "2d4efce7fbf59cedc35242a018b4bb59"
- },
- "creation_date": 1308575987,
- "last_activity_date": 1308580316,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 7,
- "score": 0,
- "community_owned": false,
- "title": "Rails 3 plugin nested_form versus JavaScript appraoch for adding form fields dynamically in a nested form",
- "body": "I am researching ways on how to dynamically add form fields for nested models and stumbled accross the nested_form plugin by ryanb. No doubt this is a a great piece of code, but I wondered why does it have to be so sophisticated?
\n\nExample: A form for creating / adding a project has one or more tasks assigned. The user can dynamically add more tasks by clicking on a add-task button. A project must have at least one task. Each task has a name and a description.
\n\nSo why not just:\n- When generating the html, sourround each set of task fields with a div given an ID such as \"dynamic_fields\"\n- When the user clicks the add-task button, call a JavaScript function via link_to_function to clone the dynamic_fields subtree. Insert the new set of fields at the bottom of the task list.\n- Via JavaScript, remove the values of the newly added fields and replace the child ID with something unique (Ryan suggests using a value based on the current time)
\n\nI am aware that the nested_forms plugin also works for deeper nesting structures, but given my simple use case with only one level of hierarchy, is the approach outlined above practical? Or am I missing something important? Any guidance on this topic is appreciated.
\n"
- },
- {
- "tags": [
- "javascript",
- "jquery",
- "jquery-ui",
- "animation",
- "jquery-animation"
- ],
- "answer_count": 7,
- "favorite_count": 1,
- "question_timeline_url": "/questions/814910/timeline",
- "question_comments_url": "/questions/814910/comments",
- "question_answers_url": "/questions/814910/answers",
- "question_id": 814910,
- "creation_date": 1241273025,
- "last_activity_date": 1308580310,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 812,
- "score": 2,
- "community_owned": false,
- "title": "Animating Background Image",
- "body": "I Like using Jquery and its companion Jquery Ui but can not find a way to animate background image over a certain period of time like 5 seconds.\nI can not do something like:
\n\n$('sampleelement').animate({'background-image':'url(hello.jpg)'},5000);\n
\n\nAny ideas??
\n"
- },
- {
- "tags": [
- "javascript",
- "html5",
- "jquery-mobile"
- ],
- "answer_count": 3,
- "accepted_answer_id": 5554294,
- "favorite_count": 1,
- "question_timeline_url": "/questions/5549729/timeline",
- "question_comments_url": "/questions/5549729/comments",
- "question_answers_url": "/questions/5549729/answers",
- "question_id": 5549729,
- "owner": {
- "user_id": 683553,
- "user_type": "registered",
- "display_name": "Satch3000",
- "reputation": 557,
- "email_hash": "9d848d8392fc5291a0c77f4064b7e67a"
- },
- "creation_date": 1301995299,
- "last_activity_date": 1308580238,
- "up_vote_count": 2,
- "down_vote_count": 0,
- "view_count": 391,
- "score": 2,
- "community_owned": false,
- "title": "JQuery Mobile Calendar ?",
- "body": "Does anyone know of any Calendar that I could use on JQuery Mobile?
\n\nNeeds to be able to save dates locally etc.
\n\nThanks
\n"
- },
- {
- "tags": [
- "javascript",
- "google-chrome-extension"
- ],
- "answer_count": 0,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6404725/timeline",
- "question_comments_url": "/questions/6404725/comments",
- "question_answers_url": "/questions/6404725/answers",
- "question_id": 6404725,
- "owner": {
- "user_id": 771790,
- "user_type": "registered",
- "display_name": "jbills",
- "reputation": 10,
- "email_hash": "925ead45ca60d8569512e6c4ff34c841"
- },
- "creation_date": 1308512617,
- "last_edit_date": 1308580065,
- "last_activity_date": 1308580065,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 19,
- "score": 1,
- "community_owned": false,
- "title": "Google tasks update error",
- "body": "I am attempting to update a task with the following code:\n \n
\n\nfunction updtsk(task,id)\n{\n var url = 'https://www.googleapis.com/tasks/v1/lists/@default/tasks/'+id;\n var req = {\n 'method': 'PUT',\n 'headers': {\n 'Content-type': 'application/json'\n },\n 'body': JSON.stringify(task)\n };\n var addDone = function(resp, xhr) {\n if (xhr.status != 200) {\n notifyFailure('Couldn\\'t update task.', xhr.status);\n return;\n }\n\n //notifySuccess(task['title']);\n }\n\n oauth.sendSignedRequest(url, addDone, req);\n}\n
\n\nI get the following error however:
\n\n\"{\n \"error\": {\n \"errors\": [\n {\n \"domain\": \"global\",\n \"reason\": \"invalid\",\n \"message\": \"Invalid Value\"\n }\n ],\n \"code\": 400,\n \"message\": \"Invalid Value\"\n }\n}\n\"\n
\n\nThe update body is this:
\n\n{\n 'title': $(this).val()\n};\n
\n\nI am using the chrome_ex_oauth api and could use some help.
\n"
- },
- {
- "tags": [
- "javascript",
- "css"
- ],
- "answer_count": 3,
- "accepted_answer_id": 6412241,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412119/timeline",
- "question_comments_url": "/questions/6412119/comments",
- "question_answers_url": "/questions/6412119/answers",
- "question_id": 6412119,
- "owner": {
- "user_id": 649737,
- "user_type": "registered",
- "display_name": "Leron",
- "reputation": 78,
- "email_hash": "c7720840fc9817ef936cf82e8cdb848d"
- },
- "creation_date": 1308577298,
- "last_edit_date": 1308579073,
- "last_activity_date": 1308580037,
- "up_vote_count": 0,
- "down_vote_count": 0,
- "view_count": 33,
- "score": 0,
- "community_owned": false,
- "title": "show larger Image with CSS and onMouseOver",
- "body": "I use this simple script :
\n\n<body>\n <script type=\"text/javascript\">\nfunction mouseOver()\n{\ndocument.getElementById(\"img1\").src =\"images/p2.jpg\";\n}\nfunction mouseOut()\n{\ndocument.getElementById(\"img1\").src =\"images/p1.jpg\";\n}\n</script>\n<div class=\"img\">\n <a target=\"_blank\" href=\"images/p1.jpg\"><img src=\"images/p1.jpg\" alt=\"Klematis\" width=\"110\" height=\"90\" id=\"img1\" onMouseOver= \"mouseOver()\" onMouseOut=\"mouseOut()\"/></a>\n <div class=\"desc\">Add a description of the image here</div>\n</div>\n
\n\nThe images are pretty big so I adjust them with width and height properties, I thought that if I just call the function I'll see the bigger image but it dosen't happen.So what can I do to see an enlarged image with onMouseOver?\n I'll add the style sheet in case it matters:
\n\n<style type=\"text/css\">\ndiv.img\n{\n margin: 2px;\n border: 1px solid #0000ff;\n height: auto;\n width: auto;\n float: left;\n text-align: center;\n}\ndiv.img img\n{\n display: inline;\n margin: 3px;\n border: 1px solid #ffffff;\n}\ndiv.img a:hover img {border: 1px solid #0000ff;}\ndiv.desc\n{\n text-align: center;\n font-weight: normal;\n width: 120px;\n margin: 2px;\n}\n</style>\n
\n\nP.S
\n\nDon't mind the <a href
thing I just use the raw code from w3 schools...
\n\nP.S Maybe I'll ask another question for this, the problem with the enlarged images is solved but now I want them to show in some kind of block cause now if I have even 4 iamges when i hover the last one the enlarged image goes far away from the starting location, and I want to make it just like gallery block and all images ot be shown there, wthout going outside the borders of the gallery.Any help or maybe another Qs better....
\n"
- },
- {
- "tags": [
- "javascript",
- "map"
- ],
- "answer_count": 1,
- "favorite_count": 0,
- "question_timeline_url": "/questions/6412720/timeline",
- "question_comments_url": "/questions/6412720/comments",
- "question_answers_url": "/questions/6412720/answers",
- "question_id": 6412720,
- "owner": {
- "user_id": 804279,
- "user_type": "registered",
- "display_name": "Jatinder Thind",
- "reputation": 6,
- "email_hash": "d91f8193ab33d05022a8ac02b86c833d"
- },
- "creation_date": 1308579832,
- "last_activity_date": 1308580008,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 20,
- "score": 1,
- "community_owned": false,
- "title": "Need suggestions on interactive Javascript based map",
- "body": "can anyone help identify the Javascript library used for interactive maps on http://www.africatravelresource.com/
\n\nOr is it a custom solution? Any suggestions for something similar?
\n"
- },
- {
- "tags": [
- "javascript",
- "obfuscation",
- "decode",
- "encode",
- "ext"
- ],
- "answer_count": 1,
- "accepted_answer_id": 6410094,
- "favorite_count": 1,
- "question_timeline_url": "/questions/6406161/timeline",
- "question_comments_url": "/questions/6406161/comments",
- "question_answers_url": "/questions/6406161/answers",
- "question_id": 6406161,
- "owner": {
- "user_id": 509789,
- "user_type": "registered",
- "display_name": "richardhell",
- "reputation": 18,
- "email_hash": "9e4f23b0072f4f7d3e2649e3e1a2816b"
- },
- "creation_date": 1308533799,
- "last_edit_date": 1308535618,
- "last_activity_date": 1308579900,
- "up_vote_count": 1,
- "down_vote_count": 0,
- "view_count": 54,
- "score": 1,
- "community_owned": false,
- "title": "JavaScript Encode",
- "body": "Surfing on web i find Ext.Gantt plugin for ExtJS, that extension have a special encode. Anybody know how to encode like that or another complicated form.
\n\nEncoded Gantt Chart
\n"
- }
- ]
-}
\ No newline at end of file
diff --git a/public/browse/lib/lunr.js/example/example_index.json b/public/browse/lib/lunr.js/example/example_index.json
deleted file mode 100644
index abf1fb29de..0000000000
--- a/public/browse/lib/lunr.js/example/example_index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"version":"0.5.6","fields":[{"name":"title","boost":10},{"name":"tags","boost":100},{"name":"body","boost":1}],"ref":"id","documentStore":{"store":{"78932":["appropri","box","code","code>i","p>use","paramet","pay</option>","pre><select","programat","select","service</option>","set","us","valu","value=\"10\">annu","value=\"11\">med","value=\"14\">long","value=\"17\">leav","without"],"318630":["0...but","p>do","p>follow","p>how","p>i","pic","pic.height","pic.removeattr(\"height","pic.removeattr(\"width","pic.width","pic_real_height","pic_real_width","plugin.var","real","remov","safari","safari/chrom","safari?ani","p>i","period","pre>$('sampleelement').animate({'background","second","someth","time","ui","us","way"],"3047391":["bad","basic","break","caus","combinations.\"+user=bob","p>but","p>can","p>mi","p>new","p>previous","p>take","p>user=bob","p>which","pars","parser","point","recent","regex","result","sign","skill","smith","smith shouldoverrideurlloadingi","p>kkthank","page","pc","pop","problem","same","sourc","support","through","up","url","veri","web","webkit","webview","webviewcli","went","whenev","wherea","window"],"3827055":["2010","2010.doe","p>i","pane","quickli","read","rel=\"nofollow\">j","rel=\"nofollow\">testdriven.netalthough","p>how","p>i","p>work","post","pre>$(window).blur(funct","second","send","setinterv","setinterval(funct","stop","success","this:<input","contain","coursor","cursor","data","delet","detect","dynam","effect","element","end","event","fix","great","here","href=\"http://vidasp.net/tinydemos/dynam","input","insid","javascript","keydown","left","li","li>when","locat","need","observable.)(in","p>whi","p>assum","p>i","posit","possibl","press","programmat","regular","rel=\"nofollow\">http://vidasp.net/tinydemos/dynam","right","scenario","text","textbox.html","textbox.html should i","p>i'm","p>the","p>use","pars","parser","parser.parsefromstring(sxml","piec","pre><?xml","pre>funct","pre>var","quit","return","singl","someth","sourcexml).find(\"table1\").each(funct","text/xml","this).find(\"vehicleid\").text","this).find(\"vehiclename\").text","tri","type=\"xs:str","under","v1\">","var","vehicl","vehicleid","vehiclenam","version=\"1.0","window.activexobject","window.dompars","without","work","write","wrong","xml","xmldom(sourcexml","xmldom(sxml","xmln","xmlns:diffgr=\"urn:schema","xmlns:msdata=\"urn:schema","xmlns:msprop=\"urn:schema","xmlns:xs=\"http://www.w3.org/2001/xmlschema"],"4460205":["applic","detect","differ","insid","io","ipad","ipad/iphon","javascript","p>i","run","safari","via","way","websit","webview","webview?did","p>doe","php","php/ajax","php/javascript/ajax","redo","regist","server","state","system","undo","undo/redo","user","variabl","web","work"],"4529460":["0","2","___pause(100","___pause(250","_resize_container_image_box(intimagewidth,intimageheight","_show_imag","a').lightbox","amp;&","annoth","apli","appli","bar","biga","blockquot","box').anim","box').css","box').height","box').width","browser","browser.update andbut","p>henc","p>i","p>pleas","p>thanks$('#galleri","pre>funct","rel=\"nofollow\">http://geekswithblogs.net/wojan/archive/2009/06/17/jquerylightbox.aspxkeydown keypress al","li>mor","li>novnc","li>quirksmod","li>when","links:but","p>solution btw","p>due","p>i'm","p>quick","p>so","p>use","page","physic","post","press","pressed.detect","rel=\"nofollow\">ev","rel=\"nofollow\">here novnc","rel=\"nofollow\">novncsummaryazertycharcodekeycodekeydownkeypresskeyupkeyup.preventdefault()samehi","p>pleas","popup(lik","program","provid","relat","storag","store","text","time","us","user","want","write"],"5549729":["anyon","calendar","date","etc.doe","p>need","p>thanksi","p>sent","p>solut","p>thank","p>the","page","pass","php","place","post","problem","proxy..ani","p>i","p>thi","part","particular","pre>http://jsfiddle.net/ghhjm/http://recruitmentmalta.com/ptowers/and","p>i","p>scenario","pre>ratingcount addrating.scala","p>ratings.html","p>ratingspage.scala","p>ha","p>i","p>in","p>see","page","page): <html>","pre>packag","problem","rate","rating\">","rating\").click","rating</a></td>","rating</button>","rating').click(funct","rating').hid","rating').show","rating3","ratingcount","ratingcount).asinstanceof[htmlinput].setvalueattribute(r","ratingcount}).insertbefore('#add","ratingid","ratings\"):
i","p>i'm","p>thanks.i","p>use","rel=\"nofollow\">http://devthought.com/wp","sourc","style","suggest","us","web"],"6397574":["access","ad","be","code>i","p>i'm","p>use","pass","person","post","pre>function(req","re","receiv","req","req.sess","req/res.i","repetit","retyp","shorthand","strong>over
over.what","p>i","p>thank","pre>javascript","throw(0","tri","var%20d=document,z=d.createelement('scr'+'ipt'),b=d.body,l=d.loc","void(0","z.setattribute('src',l.protocol+'//www.instapaper.com/j/deynbbpjusei?u='+encodeuricomponent(l.href)+'&t='+(new%20date().gettim"],"6401946":["access","add","anyon","befor","begin","built","code","code>fs.prototype.myfunc","common","complain","conveni","extend","feasibl","file","fs","fs.prototype.myfunc","function","here","hr","it!i'v","p>just","pre>var","properti","prototyp","realli","repl","requir","require('f","sens","set","system","thank","thing","thrown","time","tri","true","typeerror","undefin","variabl","workaround"],"6403354":["0","0000cd","1","1st","2","25","2nd","7","7,25","7,25,,7,40,formol","7,40,formol","_l","_x","_y","array","array.best","p>i","p>the","p>what","p>wherea","pars","pre>[7,25","pre>[7,25,,7,40,formol","pre>[[object","pre>var","regards(tablewidth","code>class=\"cell\"
javascript
jquery
on","content","design","differ","div","document","don't","done","equal","even","except","fiddle..also","p>i","p>it","p>thank","p>the","percentag","pixels).<t","px","readi","resizepixelsi","p>the","pre>funct","put","reason","req","return","task","this).val","this:i","pass","possibl","prefer","string","take","us","way","xml"],"6406161":["anoth","anybodi","chartsurf","plugin","rel=\"nofollow\">encod","scheduler.com/js/sch","special","web"],"6409944":["30","blatantli","browser","can't","case","client","code>i","p>thanks!the","p>what","page","page.now.core.on('disconnect","process","reconnect","reload","remain","repeat","run","script","server","short","side","socket.io","someth","this:mi","display","dissapears. i","p>thi","pre>var","previou","question
. doe","p>i","p>the","perfectli","pre>$.ajax","pre><?xml","problem","response).find(\"simpletype\").each(funct","restrict","restriction).find(\"enumeration\").each(funct","see","sourc","studentmodeldescription.xml","success:function(respons","textstatu","this).find(\"restriction[base=xs:str","tmp","tmp=$(this).attr(\"valu","type</xs:documentation>","type:\"get","url:\"views/workspace/branching_forms/studentmodeldescription.xml","value=\"adsl","value=\"adsl2+/c","value=\"dialup","value=\"googl","value=\"internet","value=\"mozilla","value=\"opera","value=\"safari","values=new","values[j","var","version=\"1.0","work","xml","xml:lang=\"en\">network","xml:lang=\"en\">web","xmlns:xs=\"http://www.w3.org/2001/xmlschema\">"],"6410224":["box","class=\"cont","class=\"data\">","class=\"label","class=\"row\"><div","code","code>i","php5","popul","post(document.url,qstring,function(data","pre>friend","phone","piec","pre>var","regex","regex.test(avidno","regexp(avidno","replac","success","undefin","valid","var"],"6411194":["click","context","href=\"http://www.contextmenu.net/screenshot/screenshot_windows_explorer_shell_context_menu.jpg","item","javascript","jqueri","jqueryedit can","p>like","plugin","rel=\"nofollow\">thistemporarilyi","p>how","page","scroll","strong>aft","temporarili","want","web","webpag","webpage i","p>what","prototyp","quit","realli","resourc","server","side","site","structur","struggl","such","though","turn","understand","web","work","worth"],"6411636":["100px
.\"px\" 10px
nanparseint()doe","p>hi","p>now","p>thank","parseint","prefix","problem","problem?ani","p>ex","p>how","p>i","result.exampl","p>i","p>so","piec","plugin","practic","project","rail","rel=\"nofollow\">nested_form(+) i","p>what","p>with","particular","php","potenti","product","rel=\"nofollow\">googl","reli","server.<a","code>don't","p>i","p>p.","p>p.sthe","pre><body>","pre><styl","pretti","problem","properti","qs","question","raw","schools...but","p>i","p>if","pre>sortabletodo","sortabl","sortables(\"todo","sortabletodo","sortabletodos.seri","sortabletodos.serialize(fals","strong>oncomplete
)how","p>i","p>which","pre>'undefin","pre>var","prototype.j","prototype.jsand","p>ani","p>basic","p>edit:here","p>i","p>now","p>oh","p>}<td","pre>funct","pretti","put","realli","rel=\"nofollow\">https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.jsdocument.referrerdomain/login.htmldomain/statisticsresponse.sendredirecthow","p>ok","page","page.and a","p>ani","p>b","p>but","p>for","p>i","p>i'm","p>so","p>the","p>without","page","peopl","permiss","pointless","postal/zip","pre>if","present","prompt","promptli","question","question?.length00
:ax.lengthhow","p>i","p>let'","pre>funct","pre>var","properti","rest","return","set","so:am","p>ani","p>in","p>jquery$(document).ready(funct","pre><a","receiv","rel=\"nofollow\">jsfiddlefind","javascriptupdate: i'v","p>right","p>thank","p>thi","p>when","pleas","portion","pre><head","pre>funct","pretti","provid","quick","quit","remov","render","respons","run","runat=\"serv","runat=\"server\">","runat=\"server\"></asp:textbox></td>","script","search","seem","send","simpli","someon","src=\"../../scripts/webeffects.j","strong>document.getelementbyid(\"loginview1_txt2ndnum\").valu","strong>tbllottopick.findcontrolvisible=\"false\"can","p>or","rel=\"nofollow\">http://www.africatravelresource.com/edit","p>i","p>im","p>thank","php","pull","reader","realli","rss","server","side","small","start","stuff","this?example fiddle: i","p>what","practic","pre>var","problem","rel=\"nofollow\">http://jsfiddle.net/f6c92/button","p>function","p>i","p>non","p>thank","p>thi","phone_chang","pop","pre><input","pre>funct","return","seem","select","site","sitenum","still","strang","submit","though","tri","type=\"submit","upon","valid","value=\"next","var","variou","veri","work","zerophon"],"6412993":["1","1.4.3.min.js\"></script>","1]=a[i","1px","4.01//en","a[i","all\"><input","all<\\/div>').appendto('.filt","appreciated!ani","p>but","p>here","p>i","p>mi","page","part","pick","popul","possibl","pre><!doctyp","problem","public","pull","reflect","remov","return","run","s","script","see","select","show","sound","space","split","src","src=\"http://www.chewbz.com/jqueri","string","stringofclassnam","stringofclassnames.split","stringvalu","stringvalue).fadein","stringvalue).fadeout","style","sweet","this).attr('class","this).is(':check","this).val","thisclassstr","through","tmp","tmp.length+=1","tmp[tmp.length","trim","true","type:non","type=\"checkbox","type=\"text/javascript","type=\"text/javascript\">","ul.filterthi","understand","uniqu","unique(a","unique(arrayclass","up","upset","us","valu","value=\"'+thi","value=\"filteral","var","veri","version","w3c//dtd","want","width:200px;height:200px;background:#eee;border:solid","without","wonder","word","work"],"6412997":["1!</h3>","2!</h3>","3!</h3>","4!</h3>","add","befor","between","booklet","class=\"b","code>how","p>i","p>i'm","page","plugin","pre><div","prepend","really.(booklet)cssextra","em>in","em>javascript.keydownmultilin","em>tabbut","p>do","p>if","p>it'","p>we","posit","pre>document.getelementbyid","pre>value[0]='h","press","prevent","problem","return","return.i'd","page","past","script","text","user","way"],"6413183":["abov","alreadi","assign","assigned_list).**note:just","p>i","p>just","p>on","p>so","p>thanks.the","p>through","page","perform","possibl","possible?<select","present","programmat","provid","remov","requir","right","select","set","setup","shuttl","size=\"7","style=\"width:250px","this:below","p>can","p>i","page","pleas","pre>but","p>it","p>tri","p>which","photo","possible?var","same","search","set","show","string","style=\"position:relative;float:left","style=\"position:relative;width:200px;\">","trento(tn)<br","us","var","web","websit"],"6413265":["append","below","class=\"edit","class=\"row\">","clicked.<tr>
ani","p>but","p>i","p>in","p>where","p>would","pre>$('.row').append(\"<tr><td>it","pre><tr","rel=\"nofollow\">http://jsfiddle.net/littlesandra88/tzqyx/
dojo.require('folder.file2');
resources/js/dojo1.6/dojo/dojo.js
resources/js/folder/file2.js
resources/js/pages/file1.js
dojo1.6 how","p>i","p>so","p>thi","p>when","path","pre>fil","requir","resources/js/dojo1.6/folder/file2.j","run","strong>folderpages)smartphon","code>thisbelow","phonebutton').click(function(){self.toggleclick","phonecontain","phonecontainer').toggleclass","phonecontainer.append(\"<div","phonescreen\").append(\"<div","phonescreen').toggleclass","pre>smartphon","refer","seen","self=thi","set","style","this.init","this.minimap","this.minimap.init(\"#phonescreen","this.minimap.toggl","this.toggleclick","toggleclick","tri","troubl","understand","up","var","vertic","write"],"6413416":["2008","3.5","asp.net","check","debug","element","express","good/easi","i'm","index","input","javascript","jqueri","list","look","method","open","p>i'm","page","prefer","saniti","site","sort","studio","suggestions..blur(function(length){.blurlength","code>lengthvar","correct","correct.a","p>abov","p>i","p>the","pass","pre>$('.myfilter').focus(funct","re","simplifi","this).val().length","this).val().length;jquery('#textbox').val();mailclasstextbox\"test@test.com","p>^([_a","p>escap","p>nb: but","p>for","p>i","pass","re","reason","regex","rel=\"nofollow\">http://regexpal.com/undefined
\"and","p>ani","p>i","p>the","page","perfectli","popul","pre><span","second","someth","strang","thing","this:\"0","p>ani","p>i","php","post(\"mybackendfile.php","pre><input","pre>var","press","problem","querystr","result","script","script:i","p>thank","page","pal<script","pun","put","script","searchsd","id","im","info","java","javascript","join","know","known","larger","manag","nefor","newer","p>i","page","sale","scam","scammer","scan","script","scripter","site","thank","trade","uid","want","way"],"6413720":["access","allow","amp;&","appid","befor","bodi","caption","chang","check","click","close","code>how","p>so","p>thi","p>three","p>use","pars","pass","pictur","post","pre><div","pre><p","pre><script>","respons","response.post_id","root\"></div>","send","server","session","share","src=\"https://connect.facebook.net/he_il/all.js\"></script>","statu","taghtml","p>if","p>it","p>javascript","page","pre><html>","pre>(funct","prompt","return","run","show","simpl","src=\"testquery.js\"></script>","tab.i","p>i'm","per","plug","png","problem","process","push","rgb","sampl","server","similar","standard","support","teximage2d","textur","tiff","tri","types.can","p>i","p>i'm","p>the","post","pre>funct","present","press","probabl","probem","problem","rdf","resultdocu","return","right","stylesheet","suppos","tell","test","tri","us","wan't","way","web","window.activexobject","window.xmlhttprequest","work","write","wrong","xhttp.open(\"get\",dname,fals","xhttp.responsexml","xhttp.send","xhttp=new","xlst","xml","xml=loadxmldoc(\"http://www.example.com/me.rdf","xmlhttprequest","xsl","xsl=loadxmldoc(\"http://www.example.com/test.xsl","xslt","xsltprocessor","xsltprocessor.importstylesheet(xsl","xsltprocessor.transformtofragment(xml,docu","xsltprocessor=new"],"6413881":["10","10\"maximum","li>minimum","likewis","maximum","minimum","number","p>i","p>say","p>then","php","product","rang","range.i'm","p>thank","pages.<form","print","rest","retain","return","sign","site","someth","stackoverflow","store","submit","think","through","throughout","top","type=\"submit","type=\"text","us","user","value=\"mickey","value=\"mous","value=\"submit","way"],"6413908":["activexobject(\"microsoft.xmlhttp","api","chrome","code","code>hello","p>it`","pre>var","safari","simpl","thanksx123.com/123.html
x123.com/setting.htmlx123.com/setting.html
i","p>lemm","page(x123.com/123.html<html>","reflect","reload","request","save","save_chang","select","type","type=\"button","us","value=\"123\">123</option>","value=\"456\">456</option>","want","webpag"],"6413951":["_care_point.html.erbcheersit'","p>thi","p>when","partial","post","pre><div","problem.how","page","pre>funct","retunr","return","src","us","var"],"6414093":["100","11","11.118851","700px\"></div>","98","center","code","code>but","p>thi","pre><script","recogn","remov","satur","src=\"http://maps.google.com/maps/api/js?sensor=true\"></script>","style=\"width","styler","stylez","type=\"text/javascript","type=\"text/javascript\">","var","work","wrong","zoom"],"6414105":["182722795115444","ad","advance.ar","li>how","li>mi","log","login","lt;/script>","lt;div","lt;fb:like","lt;script","lt;script>","name","ol","p","p>i","p>so","p>thank","p>when","pre>i","p>javascript","particular","pass","path(\"/getstatusal","pre>fieldselect","p>now","p>or","p>so","paramet","parameter.<tr>","prefer","probabl","realli","realtim","red","registr","right","same","sampl","script","second","server","shorter","side","simpler","small","someon","someth","specifi","sure","switch","there'","third","those","trigger","type=\"text","usual","valu","want","way","way.herei'm","p>i'v","p>the","p>thi","p>thoughts?if","problem","process","produc","python","rel=\"nofollow\">http://www.regulations.govphantomjsand","p>i","p>in","pick","pre><html>","pre>(funct","refer","return","seem","someon","somewher","spot","src=\"testquery.js\"></script>","tag","testqueri","testquery(obj","testquery.html","testquery.jsfrom to how","p>thank","pre><select","prototyp","prototype.edit","p>i","page","php","request","see","select?and","p>i","p>i'm","p>i'v","p>obvious","p>thank","p>then","p>thi","place","placehold","plot","plugin","pre>seri","pre>seriesdefault","pre>y2axi","pre>yaxi","put","recent","render","renderer:$.jqplot.dateaxisrender","second","separ","seri","set","show","showtick","stack","start","thing","tick","tickopt","ticks:ani","p>i","p>thankshttp://www.youtube.com/watch?v=mynj4mz9g9g $_post[\"data1\"]
$_post[\"data2\"] [\"data1*abc\",\"data2*abc\",\"data3*abc\",\"data4*abc\",\"data5*abc\",\"data6*abc\"][\"data7*abc\",\"data8*abc\",\"data9*abc\",\"data10*abc\",\"data11*abc\",\"data12*abc\"]abcajax2.phpclass=\"content\"class=\"title\"image_name.extension
.indexaindexb$(.content).css","p>i","p>in","p>thank","p>the","p>you","php","place","portion","post","pre>$(document).readi","pre><t","rel=\"nofollow\">here nothere'","p>i","p>thi","p>when","problem","problem.ani","p>we","perfect","rel=\"nofollow\">http://www.realcapfinancial.comi","p>i'm","p>what","part","popul","provid","real","realli","sampl","select","show","somebodi","thanks!$('#international').live(\"click\",funct","code>updat","h2>html:javascript:johncheer","p>i","p>if","p>thank","paramchangebox","paramchangeboxes.removeattr('dis","php","pleas","portion","pre>$('#international').click(funct","pre><div","problem","regard","remot","see","select","selection.deploytoolmatlab","complet","compon","convert","dll","don't","even","ex","fi","file","fuzzi","javascript","javascript)?i","p>p.","partial","program","program.anybodi","p>basic","p>i","p>thanks.i","p>i'm","p>when","pre><input","pre>data.correct","put","realli","return","see","send","state","thought","type=\"checkbox","value=\"data.correct","way","what'","wrong"]},"length":100},"tokenStore":{"root":{"0":{"0":{"0":{"0":{"docs":{},"c":{"docs":{},"d":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}},"f":{"docs":{},"f":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941}}}}},"docs":{}},"docs":{}},"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6364675":{"ref":6364675,"tf":0.02027027027027027},"6403354":{"ref":6403354,"tf":0.024390243902439025},"6411169":{"ref":6411169,"tf":0.06521739130434782},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413440":{"ref":6413440,"tf":0.05333333333333334},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414152":{"ref":6414152,"tf":0.015625},"6414438":{"ref":6414438,"tf":0.016304347826086956}},"'":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{},",":{"0":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}},"1":{"0":{"0":{"0":{"docs":{"6413523":{"ref":6413523,"tf":0.014184397163120567}}},"docs":{"6412334":{"ref":6412334,"tf":0.020833333333333332},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414530":{"ref":6414530,"tf":0.005}},"%":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}},"p":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}}}}}}}},"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}},"1":{"0":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}},"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}},".":{"1":{"1":{"8":{"8":{"5":{"1":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"2":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}},"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6414438":{"ref":6414438,"tf":1.0108695652173914}},":":{"0":{"0":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}},"p":{"docs":{},"m":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"docs":{}},"docs":{}},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}},"3":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}},"4":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"6":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413744":{"ref":6413744,"tf":1.49010989010989},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"\"":{"docs":{},"?":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}},"8":{"2":{"7":{"2":{"2":{"7":{"9":{"5":{"1":{"1":{"5":{"4":{"4":{"4":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"9":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}},"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6403354":{"ref":6403354,"tf":0.024390243902439025},"6411637":{"ref":6411637,"tf":0.03571428571428571},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6414530":{"ref":6414530,"tf":0.005}},"p":{"docs":{},"x":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414530":{"ref":6414530,"tf":0.005}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}}}}}}},"”":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}},".":{"4":{"docs":{},".":{"3":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}},"]":{"docs":{},"=":{"docs":{},"a":{"docs":{},"[":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"docs":{}}}}}}}}},"2":{"0":{"0":{"8":{"docs":{"6413416":{"ref":6413416,"tf":20.03030303030303}}},"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6413881":{"ref":6413881,"tf":0.044444444444444446}}},"1":{"0":{"docs":{"3827055":{"ref":3827055,"tf":17.931372549019606}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}},"docs":{}},"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}},"1":{"5":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}},"docs":{}},"2":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}},"4":{"docs":{"6414438":{"ref":6414438,"tf":0.021739130434782608}}},"5":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}},"9":{"8":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}},"docs":{}},"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4529460":{"ref":4529460,"tf":0.014218009478672985},"6403354":{"ref":6403354,"tf":0.016260162601626018},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414578":{"ref":6414578,"tf":0.029411764705882353}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}}}}}}},"”":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"docs":{}}}}}}}},"p":{"docs":{},"x":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941}}}}},"3":{"0":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}},"p":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.015384615384615385}}}}}}}}}}}}}}}}}}}}}}}},"5":{"0":{"0":{"0":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}},"docs":{}},"docs":{}},"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}},"docs":{"318630":{"ref":318630,"tf":0.02},"3802824":{"ref":3802824,"tf":0.014925373134328358},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.7692307692307693},"6414123":{"ref":6414123,"tf":0.018292682926829267}},")":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}}}}}}},"”":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}},".":{"5":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}},"docs":{}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"docs":{}}}}}}}},"p":{"docs":{},"x":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}},"4":{"0":{"0":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}},"docs":{}},"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6414438":{"ref":6414438,"tf":0.005434782608695652}},".":{"0":{"1":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"docs":{}},"docs":{}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"docs":{}}}}}}}}},"5":{"5":{"5":{"5":{"5":{"5":{"5":{"5":{"5":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"7":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}},"docs":{}},"docs":{}},"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"6":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},")":{"docs":{},"/":{"6":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}},"docs":{}}}}}},"6":{"6":{"6":{"0":{"0":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"7":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018},"6413881":{"ref":6413881,"tf":0.022222222222222223}},",":{"2":{"5":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},",":{"docs":{},",":{"7":{"docs":{},",":{"4":{"0":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}}},"docs":{}},"4":{"0":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"docs":{}},"docs":{}}},"8":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}},".":{"1":{"2":{"3":{"docs":{},".":{"1":{"2":{"3":{"4":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{"6174688":{"ref":6174688,"tf":0.022222222222222223},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414558":{"ref":6414558,"tf":11.11111111111111}},"\"":{"docs":{},"?":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"9":{"8":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"docs":{"6413444":{"ref":6413444,"tf":0.0963855421686747},"6414578":{"ref":6414578,"tf":14.285714285714285}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}},"]":{"docs":{},"{":{"3":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}}},"4":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}},"docs":{}}}},"docs":{},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6414152":{"ref":6414152,"tf":0.0078125},"6414827":{"ref":6414827,"tf":0.03125}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412607":{"ref":6412607,"tf":2.0714285714285716}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"6403354":{"ref":6403354,"tf":26.691056910569106},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412993":{"ref":6412993,"tf":0.01483679525222552}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}},"(":{"0":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}},"docs":{}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"4185821":{"ref":4185821,"tf":0.025}}}}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413018":{"ref":6413018,"tf":0.013333333333333334}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"4508230":{"ref":4508230,"tf":2.064516129032258},"5306132":{"ref":5306132,"tf":0.008968609865470852},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"_":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6405964":{"ref":6405964,"tf":0.037037037037037035}}}}}}}},"v":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}},"e":{"docs":{},"x":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413944":{"ref":6413944,"tf":0.03076923076923077}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6397574":{"ref":6397574,"tf":2.022727272727273},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413744":{"ref":6413744,"tf":1.4285714285714284},"6414152":{"ref":6414152,"tf":0.0078125}}}},"p":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"n":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"k":{"docs":{},"!":{"docs":{},"!":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412753":{"ref":6412753,"tf":0.023255813953488372}}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414614":{"ref":6414614,"tf":0.012345679012345678}}}}},"r":{"docs":{},"e":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"4529460":{"ref":4529460,"tf":0.014218009478672985},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}},"a":{"docs":{},"z":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414473":{"ref":6414473,"tf":0.05}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}},"p":{"docs":{},"p":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6396782":{"ref":6396782,"tf":0.03125},"6414105":{"ref":6414105,"tf":20},"6414558":{"ref":6414558,"tf":1.7214611872146117}},"a":{"docs":{},"r":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}},"l":{"docs":{"6414613":{"ref":6414613,"tf":25}},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4460205":{"ref":4460205,"tf":0.07692307692307693},"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412753":{"ref":6412753,"tf":0.023255813953488372}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}},"/":{"docs":{},"x":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412753":{"ref":6412753,"tf":0.023255813953488372}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}},"a":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{"6411778":{"ref":6411778,"tf":0.7692307692307693}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413265":{"ref":6413265,"tf":1.4285714285714284},"6413356":{"ref":6413356,"tf":0.01639344262295082}}}},"a":{"docs":{},"r":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}},"i":{"docs":{},"d":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}},"i":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413908":{"ref":6413908,"tf":20},"6414105":{"ref":6414105,"tf":22}},"'":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"l":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6413183":{"ref":6413183,"tf":0.014285714285714285}},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}}}}}}}}},"p":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009},"6412632":{"ref":6412632,"tf":52.00581395348837},"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}},":":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"k":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6395651":{"ref":6395651,"tf":0.04},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.011627906976744186}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}}}}},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.024691358024691357},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411778":{"ref":6411778,"tf":0.7853598014888338},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413778":{"ref":6413778,"tf":1.25},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.013513513513513514},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411778":{"ref":6411778,"tf":0.03225806451612903},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412997":{"ref":6412997,"tf":2.0317460317460316},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"u":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}},"s":{"docs":{},"s":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888},"6414152":{"ref":6414152,"tf":0.0234375}}}}},"a":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"o":{"docs":{},"n":{"docs":{"6413778":{"ref":6413778,"tf":20}}}},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"6404725":{"ref":6404725,"tf":0.0273972602739726}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414530":{"ref":6414530,"tf":0.005}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}},"i":{"docs":{},"c":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"[":{"docs":{},"i":{"docs":{},"]":{"docs":{},"=":{"docs":{},"$":{"docs":{},".":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"(":{"docs":{},"$":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"[":{"docs":{},"i":{"docs":{},"]":{"docs":{},"=":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.03508771929824561}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"(":{"docs":{},"u":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}},"m":{"docs":{},"y":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}},"n":{"docs":{},"o":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"y":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}},"i":{"docs":{},"m":{"docs":{},"g":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}},"'":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"%":{"2":{"0":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"%":{"2":{"0":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"%":{"2":{"0":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"%":{"2":{"0":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"%":{"2":{"0":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"%":{"2":{"0":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}},"docs":{}}}}}}}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}},"u":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"s":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412589":{"ref":6412589,"tf":0.02531645569620253}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"=":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}},"k":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"6413183":{"ref":6413183,"tf":0.02142857142857143}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941}}}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":1}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"6405964":{"ref":6405964,"tf":0.037037037037037035},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6413327":{"ref":6413327,"tf":0.05},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414530":{"ref":6414530,"tf":0.005}}}}},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414530":{"ref":6414530,"tf":0.005}}}}}},"o":{"docs":{},"n":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"e":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}},"t":{"docs":{},"h":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414240":{"ref":6414240,"tf":0.012345679012345678}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}},"d":{"docs":{},"/":{"docs":{},"o":{"docs":{},"r":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}},"r":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"3802824":{"ref":3802824,"tf":51.27985074626866}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"y":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186}}}}},"i":{"docs":{},"m":{"docs":{"814910":{"ref":814910,"tf":31.94642857142857},"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6414530":{"ref":6414530,"tf":0.01}}}}},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"4047072":{"ref":4047072,"tf":0.09302325581395349},"4508230":{"ref":4508230,"tf":20},"6174688":{"ref":6174688,"tf":26.272222222222222},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412753":{"ref":6412753,"tf":28.37984496124031},"6413944":{"ref":6413944,"tf":52.01538461538462},"6414530":{"ref":6414530,"tf":41.68666666666667}},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6412119":{"ref":6412119,"tf":0.011764705882352941}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413881":{"ref":6413881,"tf":0.044444444444444446},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"5351143":{"ref":5351143,"tf":21.452961672473865},"6396782":{"ref":6396782,"tf":41.729166666666664}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}}}}}}},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":0.02127659574468085}}}}}}}},"s":{"docs":{},"u":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":33.33333333333333}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}},"l":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6412566":{"ref":6412566,"tf":1.25},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414105":{"ref":6414105,"tf":0.02857142857142857}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.02142857142857143}}}}}}}}}}},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}},"_":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":1.0217391304347827}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}},"t":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"t":{"docs":{},"u":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}},"u":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414060":{"ref":6414060,"tf":50}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"y":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"r":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"d":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}}},",":{"docs":{},"b":{"docs":{},",":{"docs":{},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}},"[":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412589":{"ref":6412589,"tf":0.0379746835443038}}}}}}}},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"x":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}}},":":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"b":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413327":{"ref":6413327,"tf":2},"6414438":{"ref":6414438,"tf":0.005434782608695652}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"814910":{"ref":814910,"tf":3.3749999999999996},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414123":{"ref":6414123,"tf":0.024390243902439025},"6414530":{"ref":6414530,"tf":1.6866666666666665}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6413523":{"ref":6413523,"tf":0.02127659574468085}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}},"s":{"docs":{},"e":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412720":{"ref":6412720,"tf":1.6666666666666665},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"=":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}}}}},"i":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}},"c":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.05263157894736842}},"d":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"r":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"t":{"docs":{},"z":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}},"o":{"docs":{},"x":{"docs":{"78932":{"ref":78932,"tf":1.25},"4185821":{"ref":4185821,"tf":0.075},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6410224":{"ref":6410224,"tf":2.019607843137255},"6411282":{"ref":6411282,"tf":0.07407407407407407},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413881":{"ref":6413881,"tf":1.6888888888888887},"6414614":{"ref":6414614,"tf":0.018518518518518517},"6414827":{"ref":6414827,"tf":0.03125}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}},"!":{"docs":{},"?":{"docs":{},"!":{"docs":{},"?":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}},"d":{"docs":{},"y":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}}}}}}}}}}}}},"i":{"docs":{"6404725":{"ref":6404725,"tf":0.0273972602739726},"6411169":{"ref":6411169,"tf":25},"6413720":{"ref":6413720,"tf":0.007407407407407408}}}},"t":{"docs":{},"h":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4185821":{"ref":4185821,"tf":0.0125},"4272538":{"ref":4272538,"tf":1.6757575757575756},"4508230":{"ref":4508230,"tf":0.03225806451612903},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6413240":{"ref":6413240,"tf":0.018691588785046728}},"e":{"docs":{},"r":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6414438":{"ref":6414438,"tf":0.010869565217391304}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412119":{"ref":6412119,"tf":0.023529411764705882},"6414530":{"ref":6414530,"tf":0.005}}}}}},"o":{"docs":{},"k":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}},"s":{"docs":{},"s":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}},"e":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6414473":{"ref":6414473,"tf":1.25}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}},"v":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}},"o":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6413265":{"ref":6413265,"tf":1.4474393530997303},"6414614":{"ref":6414614,"tf":0.006172839506172839}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414530":{"ref":6414530,"tf":0.01}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413951":{"ref":6413951,"tf":2.0114942528735633}},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412997":{"ref":6412997,"tf":2},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}},".":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412863":{"ref":6412863,"tf":0.038461538461538464}}},"i":{"docs":{},"d":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6413018":{"ref":6413018,"tf":0.013333333333333334}},"n":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}},"t":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},",":{"docs":{},"#":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414105":{"ref":6414105,"tf":0.0380952380952381}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"[":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"g":{"docs":{"6412151":{"ref":6412151,"tf":2.011627906976744}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}},"t":{"docs":{"6401946":{"ref":6401946,"tf":2.5317460317460316}}}}}},"r":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412632":{"ref":6412632,"tf":0.029069767441860465}},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"318630":{"ref":318630,"tf":0.02},"3802824":{"ref":3802824,"tf":0.014925373134328358},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5306132":{"ref":5306132,"tf":40.01345291479821},"6174688":{"ref":6174688,"tf":0.022222222222222223},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6395651":{"ref":6395651,"tf":0.8092307692307693},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412566":{"ref":6412566,"tf":0.01744186046511628},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413732":{"ref":6413732,"tf":33.34972677595628},"6413744":{"ref":6413744,"tf":0.03076923076923077},"6414152":{"ref":6414152,"tf":0.0078125},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414578":{"ref":6414578,"tf":0.029411764705882353}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"m":{"docs":{},"s":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},",":{"1":{"2":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}},"docs":{}},"docs":{}}}}}}},"a":{"docs":{},"k":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"$":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{},"i":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"[":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412151":{"ref":6412151,"tf":2.011627906976744}}}}}}},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}},"i":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413951":{"ref":6413951,"tf":0.011494252873563218}},"a":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413744":{"ref":6413744,"tf":1.49010989010989}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"4047072":{"ref":4047072,"tf":3.3565891472868215},"6413440":{"ref":6413440,"tf":0.02666666666666667}},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}}}},"h":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}},"n":{"docs":{},"k":{"docs":{},"p":{"docs":{},"c":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"i":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.025974025974025976}}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991},"6403354":{"ref":6403354,"tf":0.0975609756097561},"6412566":{"ref":6412566,"tf":0.011627906976744186}}}}}}}}}},"g":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"(":{"docs":{},"z":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"3827055":{"ref":3827055,"tf":0.014705882352941176},"6414755":{"ref":6414755,"tf":35.455782312925166}},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6405964":{"ref":6405964,"tf":22.537037037037038},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.028368794326241134},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414614":{"ref":6414614,"tf":0.024691358024691357},"6414827":{"ref":6414827,"tf":0.0625}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6409972":{"ref":6409972,"tf":1.4702380952380951},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6414827":{"ref":6414827,"tf":2.53125}},"'":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"e":{"docs":{},"d":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"y":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.018518518518518517}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6413944":{"ref":6413944,"tf":2.046153846153846},"6414123":{"ref":6414123,"tf":0.024390243902439025},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":1.6966666666666665},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":0.03076923076923077}}}}}},"r":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":1.0089686098654709}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6403728":{"ref":6403728,"tf":0.015384615384615385},"6414578":{"ref":6414578,"tf":0.029411764705882353}},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"=":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"6413440":{"ref":6413440,"tf":1.25}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6404725":{"ref":6404725,"tf":25},"6410184":{"ref":6410184,"tf":0.013605442176870748},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6414558":{"ref":6414558,"tf":12.805175038051749}},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"_":{"docs":{},"o":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6174688":{"ref":6174688,"tf":1.25}}}}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412993":{"ref":6412993,"tf":0.026706231454005934},"6413951":{"ref":6413951,"tf":0.022988505747126436}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549},"6414530":{"ref":6414530,"tf":0.03}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{"6412997":{"ref":6412997,"tf":0.031746031746031744}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.01483679525222552}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"m":{"docs":{},"g":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}},"_":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}},"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"6414530":{"ref":6414530,"tf":0.03}}}}}},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"_":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}},"r":{"docs":{},"g":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.01483679525222552}}}}}}}}}},"'":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}},"z":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"3802824":{"ref":3802824,"tf":0.04477611940298507},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414105":{"ref":6414105,"tf":0.0380952380952381}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6409944":{"ref":6409944,"tf":0.043478260869565216},"6413444":{"ref":6413444,"tf":0.012048192771084338}},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"6413036":{"ref":6413036,"tf":28.395833333333332}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413951":{"ref":6413951,"tf":0.034482758620689655}}}},"n":{"docs":{},"e":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413523":{"ref":6413523,"tf":0.0070921985815602835}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":2.00709219858156}},"(":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"1":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}}},"o":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}},"d":{"docs":{},"e":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6294393":{"ref":6294393,"tf":0.02097902097902098},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6396782":{"ref":6396782,"tf":0.03125},"6401696":{"ref":6401696,"tf":0.07407407407407407},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412151":{"ref":6412151,"tf":0.023255813953488372},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413440":{"ref":6413440,"tf":0.02666666666666667},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.06451612903225806},"6414060":{"ref":6414060,"tf":0.041666666666666664},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414152":{"ref":6414152,"tf":0.015625},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414614":{"ref":6414614,"tf":0.05555555555555555}},">":{"0":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}},"e":{"docs":{},">":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}}}}}}}},"1":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}},"docs":{}},"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}},"r":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"318630":{"ref":318630,"tf":0.02},"814910":{"ref":814910,"tf":0.041666666666666664},"4047072":{"ref":4047072,"tf":0.023255813953488372},"4272538":{"ref":4272538,"tf":0.01818181818181818},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6364675":{"ref":6364675,"tf":0.010135135135135136},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6403354":{"ref":6403354,"tf":0.056910569105691054},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6404725":{"ref":6404725,"tf":0.0410958904109589},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6410184":{"ref":6410184,"tf":0.013605442176870748},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6412259":{"ref":6412259,"tf":0.07692307692307693},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412589":{"ref":6412589,"tf":0.05063291139240506},"6412607":{"ref":6412607,"tf":0.07142857142857142},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412913":{"ref":6412913,"tf":0.03896103896103896},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413018":{"ref":6413018,"tf":0.02666666666666667},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413265":{"ref":6413265,"tf":0.05660377358490566},"6413327":{"ref":6413327,"tf":0.025},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413440":{"ref":6413440,"tf":0.02666666666666667},"6413512":{"ref":6413512,"tf":0.06060606060606061},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413720":{"ref":6413720,"tf":0.02962962962962963},"6413732":{"ref":6413732,"tf":0.03278688524590164},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414060":{"ref":6414060,"tf":0.041666666666666664},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":0.02857142857142857},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414152":{"ref":6414152,"tf":0.0078125},"6414240":{"ref":6414240,"tf":0.024691358024691357},"6414253":{"ref":6414253,"tf":0.043478260869565216},"6414438":{"ref":6414438,"tf":0.021739130434782608},"6414530":{"ref":6414530,"tf":0.01},"6414614":{"ref":6414614,"tf":0.012345679012345678},"6414827":{"ref":6414827,"tf":0.0625}}}}}},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{},",":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"docs":{},"\"":{"docs":{},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}}}}}}},"2":{"docs":{},"\"":{"docs":{},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}}}}}}},"docs":{}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}}}}}}}}}}}},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"2":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}},"i":{"docs":{},"l":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}},"[":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"2":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"3":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"4":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"5":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"6":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"7":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"8":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"9":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"0":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"1":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"1":{"2":{"docs":{},"*":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"\"":{"docs":{},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"x":{"2":{"docs":{},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}},"docs":{}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6403728":{"ref":6403728,"tf":0.023076923076923078}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}},"b":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}},"x":{"1":{"2":{"3":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"1":{"2":{"3":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.02531645569620253}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"1":{"docs":{},".":{"6":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"2":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{},"{":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}},"a":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}},"\"":{"docs":{},"p":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}}}}}}}}}},"f":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}},"n":{"docs":{},"f":{"docs":{},"u":{"docs":{},"s":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}},"e":{"docs":{},"d":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"m":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"6296451":{"ref":6296451,"tf":0.037037037037037035},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412632":{"ref":6412632,"tf":2},"6414613":{"ref":6414613,"tf":1.4285714285714284}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413036":{"ref":6413036,"tf":28.395833333333332},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413944":{"ref":6413944,"tf":2.0153846153846153},"6414530":{"ref":6414530,"tf":0.005}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"/":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{"6413778":{"ref":6413778,"tf":0.028037383177570093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6396782":{"ref":6396782,"tf":0.03125}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6396782":{"ref":6396782,"tf":0.03125}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{"6411194":{"ref":6411194,"tf":2.0454545454545454},"6414107":{"ref":6414107,"tf":0.02857142857142857}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.018957345971563982},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.01483679525222552}}}}}}}},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"c":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.013986013986013986}},"u":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"6411169":{"ref":6411169,"tf":1.4285714285714284}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414755":{"ref":6414755,"tf":1.0612244897959184}}}},"n":{"docs":{},"i":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6409944":{"ref":6409944,"tf":2.900621118012422},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414105":{"ref":6414105,"tf":0.01904761904761905}},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"j":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":3.333333333333333}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412151":{"ref":6412151,"tf":0.03488372093023256}}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"u":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}},"\"":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"[":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413440":{"ref":6413440,"tf":1.25},"6414152":{"ref":6414152,"tf":0.0078125},"6414614":{"ref":6414614,"tf":0.012345679012345678}},"l":{"docs":{},"i":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6414755":{"ref":6414755,"tf":0.02040816326530612}}},"x":{"docs":{"3047391":{"ref":3047391,"tf":2},"6412993":{"ref":6412993,"tf":1.6666666666666665},"6413523":{"ref":6413523,"tf":2}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"c":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}},"o":{"docs":{},"n":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"u":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414376":{"ref":6414376,"tf":0.02702702702702703}}}},"i":{"docs":{},"l":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}},"e":{"docs":{},"t":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}}}}}}},":":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}}}}},"e":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414578":{"ref":6414578,"tf":0.029411764705882353}}},"m":{"docs":{},"a":{"docs":{"6413444":{"ref":6413444,"tf":35.84538152610441}},"n":{"docs":{},"d":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412334":{"ref":6412334,"tf":0.004166666666666667}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}}}}},"o":{"docs":{},"n":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}}}}}}},"o":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}},".":{"docs":{},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"o":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{},"_":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018},"6414123":{"ref":6414123,"tf":0.012195121951219513}},":":{"docs":{},"#":{"0":{"0":{"0":{"0":{"0":{"0":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"3":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}},"docs":{}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"6409972":{"ref":6409972,"tf":20.041666666666668}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}},"n":{"docs":{},"t":{"docs":{"6411637":{"ref":6411637,"tf":35.851190476190474}}}},"p":{"docs":{},"l":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"o":{"docs":{},"k":{"docs":{},"i":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6412151":{"ref":6412151,"tf":52}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4047072":{"ref":4047072,"tf":0.046511627906976744},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":1.2722222222222221},"6364675":{"ref":6364675,"tf":1.4387065637065635},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413778":{"ref":6413778,"tf":0.018691588785046728},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414152":{"ref":6414152,"tf":0.0078125}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{"5549729":{"ref":5549729,"tf":3.4047619047619047},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693},"6403728":{"ref":6403728,"tf":0.023076923076923078}}}}}},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436}}}}},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436}},".":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436}}}}}}}}}}}}},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112},"6413018":{"ref":6413018,"tf":0.013333333333333334}}}},"r":{"docs":{},"i":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413889":{"ref":6413889,"tf":0.015873015873015872}},"a":{"docs":{},"g":{"docs":{"6413018":{"ref":6413018,"tf":1.29}}}}}},"d":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693}}}},"c":{"docs":{},"h":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414152":{"ref":6414152,"tf":0.0078125},"6414578":{"ref":6414578,"tf":0.029411764705882353}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"v":{"docs":{},"a":{"docs":{"6413881":{"ref":6413881,"tf":0.044444444444444446}}}}},"s":{"docs":{},"e":{"docs":{"318630":{"ref":318630,"tf":0.02},"4185821":{"ref":4185821,"tf":0.0125},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412428":{"ref":6412428,"tf":0.011627906976744186}}}},"m":{"docs":{},"e":{"docs":{"6412151":{"ref":6412151,"tf":2},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"u":{"docs":{},"s":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6414473":{"ref":6414473,"tf":1.25},"6414558":{"ref":6414558,"tf":0.0273972602739726}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"6410184":{"ref":6410184,"tf":0.02040816326530612}}},"b":{"docs":{},"l":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}},"r":{"docs":{},"a":{"docs":{},"z":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{"5306132":{"ref":5306132,"tf":20}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02},"5351143":{"ref":5351143,"tf":1.4285714285714284},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412993":{"ref":6412993,"tf":0.020771513353115726},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"e":{"docs":{},"/":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"6413951":{"ref":6413951,"tf":2}}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"6403728":{"ref":6403728,"tf":1.4978021978021976},"6414530":{"ref":6414530,"tf":0.025}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"=":{"docs":{},"\"":{"0":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"=":{"docs":{},"\"":{"0":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}},"docs":{}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414558":{"ref":6414558,"tf":0.0273972602739726}}}}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941},"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705},"6413881":{"ref":6413881,"tf":0.044444444444444446},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6411636":{"ref":6411636,"tf":0.034482758620689655},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6413036":{"ref":6413036,"tf":3.333333333333333},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.0375}}}}}}},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413881":{"ref":6413881,"tf":0.022222222222222223}},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}},"s":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":25},"6294393":{"ref":6294393,"tf":20},"6411636":{"ref":6411636,"tf":25.017241379310345},"6412119":{"ref":6412119,"tf":52},"6413018":{"ref":6413018,"tf":20}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}},"c":{"docs":{},"c":{"docs":{},";":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},":":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},";":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"1":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412151":{"ref":6412151,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":1.6796536796536794},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":0.005},"6414827":{"ref":6414827,"tf":0.03125}}},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"i":{"docs":{},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6414614":{"ref":6414614,"tf":1.4285714285714284}}}}},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"6396782":{"ref":6396782,"tf":1.6979166666666665},"6413549":{"ref":6413549,"tf":3.333333333333333},"6413720":{"ref":6413720,"tf":26.674074074074074},"6414105":{"ref":6414105,"tf":22.00952380952381},"6414782":{"ref":6414782,"tf":21.68939393939394}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}},"r":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414613":{"ref":6414613,"tf":0.01818181818181818}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"i":{"docs":{"6414755":{"ref":6414755,"tf":1.0204081632653061}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6414530":{"ref":6414530,"tf":0.005}},"e":{"docs":{},"r":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"6296451":{"ref":6296451,"tf":23.37037037037037},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413327":{"ref":6413327,"tf":2.1},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413778":{"ref":6413778,"tf":0.037383177570093455},"6414530":{"ref":6414530,"tf":0.015},"6414558":{"ref":6414558,"tf":0.0410958904109589},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414755":{"ref":6414755,"tf":1.0204081632653061}},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.04938271604938271}},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}},"v":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}},"docs":{}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}},"l":{"docs":{"6413240":{"ref":6413240,"tf":0.028037383177570093},"6413889":{"ref":6413889,"tf":0.015873015873015872}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412993":{"ref":6412993,"tf":0.02373887240356083}},"a":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.008902077151335312}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403728":{"ref":6403728,"tf":0.015384615384615385},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413778":{"ref":6413778,"tf":0.018691588785046728},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"6414152":{"ref":6414152,"tf":0.015625}}}}}},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}}}}}}},"e":{"docs":{"6412334":{"ref":6412334,"tf":2}},"f":{"docs":{},"o":{"docs":{},"x":{"4":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}},"docs":{"318630":{"ref":318630,"tf":0.02},"4272538":{"ref":4272538,"tf":1.6712121212121211},"6174688":{"ref":6174688,"tf":0.022222222222222223},"6410184":{"ref":6410184,"tf":28.353741496598637},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413732":{"ref":6413732,"tf":33.33333333333333},"6413778":{"ref":6413778,"tf":20.009345794392523},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6414376":{"ref":6414376,"tf":33.36036036036035}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}},"y":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"m":{"docs":{},"l":{"docs":{},"i":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"x":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":2.009478672985782},"6403728":{"ref":6403728,"tf":0.023076923076923078},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"5351143":{"ref":5351143,"tf":0.07317073170731707},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6411778":{"ref":6411778,"tf":0.8014888337468983},"6413036":{"ref":6413036,"tf":0.0625},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414123":{"ref":6414123,"tf":0.042682926829268296}}}}},"n":{"docs":{},"e":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414558":{"ref":6414558,"tf":0.0136986301369863}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"6413244":{"ref":6413244,"tf":0.08333333333333333}}}}}}},"d":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":2.011627906976744},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"6413732":{"ref":6413732,"tf":2.0163934426229506}}}}}},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"6409944":{"ref":6409944,"tf":0.028985507246376812},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"3047391":{"ref":3047391,"tf":0.0375},"4272538":{"ref":4272538,"tf":0.00909090909090909},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413327":{"ref":6413327,"tf":0.025},"6414152":{"ref":6414152,"tf":0.0078125},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6413327":{"ref":6413327,"tf":0.025},"6414530":{"ref":6414530,"tf":0.005}}}}}},"r":{"docs":{},"m":{"docs":{"5351143":{"ref":5351143,"tf":20.024390243902438},"6174688":{"ref":6174688,"tf":0.022222222222222223},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6411778":{"ref":6411778,"tf":21.554590570719604},"6412913":{"ref":6412913,"tf":51.705627705627705},"6413240":{"ref":6413240,"tf":2.046728971962617},"6413889":{"ref":6413889,"tf":33.34920634920635},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414123":{"ref":6414123,"tf":0.012195121951219513}},"u":{"docs":{},"l":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}},"a":{"docs":{},"t":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414438":{"ref":6414438,"tf":14.296583850931675}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}},"o":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412913":{"ref":6412913,"tf":0.03896103896103896}}}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}},"=":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{"5351143":{"ref":5351143,"tf":1.4285714285714284}}}},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}},"i":{"docs":{},"=":{"0":{"docs":{},";":{"docs":{},"i":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}},"docs":{}}},"j":{"docs":{},"=":{"0":{"docs":{},";":{"docs":{},"j":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{},"j":{"docs":{},"+":{"docs":{},"+":{"docs":{},")":{"docs":{},"i":{"docs":{},"f":{"docs":{},"(":{"docs":{},"a":{"docs":{},"[":{"docs":{},"j":{"docs":{},"]":{"docs":{},"=":{"docs":{},"=":{"docs":{},"e":{"docs":{},")":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}},"c":{"docs":{},"u":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6413440":{"ref":6413440,"tf":0.02666666666666667}}}},"o":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6413327":{"ref":6413327,"tf":0.025},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}},"r":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}},"n":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}},"=":{"docs":{},"\"":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"f":{"docs":{},"b":{"docs":{},":":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"f":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6401946":{"ref":6401946,"tf":0.031746031746031744},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.01764705882352941},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":1.255813953488372},"6412589":{"ref":6412589,"tf":0.0759493670886076},"6412607":{"ref":6412607,"tf":2.0714285714285716},"6412632":{"ref":6412632,"tf":0.01744186046511628},"6412863":{"ref":6412863,"tf":1.467032967032967},"6412913":{"ref":6412913,"tf":0.025974025974025976},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6413356":{"ref":6413356,"tf":3.415300546448087},"6413440":{"ref":6413440,"tf":21.25},"6413512":{"ref":6413512,"tf":0.06060606060606061},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413541":{"ref":6413541,"tf":0.05357142857142857},"6413720":{"ref":6413720,"tf":0.022222222222222223},"6413732":{"ref":6413732,"tf":0.03278688524590164},"6413778":{"ref":6413778,"tf":0.037383177570093455},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.01904761904761905},"6414123":{"ref":6414123,"tf":1.4346689895470381},"6414240":{"ref":6414240,"tf":0.024691358024691357},"6414530":{"ref":6414530,"tf":0.005},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"(":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232},"6414240":{"ref":6414240,"tf":0.012345679012345678}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}},"p":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}},"m":{"docs":{},"s":{"docs":{},"g":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"e":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412151":{"ref":6412151,"tf":0.023255813953488372}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"u":{"docs":{},"i":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}},"x":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.0375}}}}}}}}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.025}}}}}}}}}}},"%":{"2":{"0":{"docs":{},"i":{"docs":{},"p":{"docs":{},"r":{"docs":{},"l":{"5":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"docs":{}}}}}},"docs":{}},"docs":{}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"n":{"docs":{},"i":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"z":{"docs":{},"z":{"docs":{},"i":{"docs":{"6414755":{"ref":6414755,"tf":1.0408163265306123}}}}},"l":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815}}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806},"6414782":{"ref":6414782,"tf":0.022727272727272728}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"6414558":{"ref":6414558,"tf":23.91628614916286}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"6396782":{"ref":6396782,"tf":0.0625}}}}}}}}}},"e":{"docs":{},"w":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.01744186046511628}},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}},"e":{"docs":{},"d":{"docs":{"6412753":{"ref":6412753,"tf":0.046511627906976744},"6413720":{"ref":6413720,"tf":0.007407407407407408}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.03260869565217391}}}},"a":{"docs":{},"g":{"docs":{"6413523":{"ref":6413523,"tf":0.02127659574468085}}},"s":{"docs":{},"h":{"docs":{"6395651":{"ref":6395651,"tf":20.76923076923077}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"b":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}},".":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6414105":{"ref":6414105,"tf":2}},"s":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"(":{"docs":{},"{":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"d":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}},"u":{"docs":{},"i":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},":":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}},"s":{"docs":{"6401946":{"ref":6401946,"tf":0.031746031746031744}},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}},"g":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818},"4529460":{"ref":4529460,"tf":0.014218009478672985},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6410184":{"ref":6410184,"tf":0.05442176870748299},"6412151":{"ref":6412151,"tf":0.046511627906976744},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.011869436201780416},"6413240":{"ref":6413240,"tf":0.037383177570093455},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413889":{"ref":6413889,"tf":0.047619047619047616},"6413951":{"ref":6413951,"tf":0.13793103448275862},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414827":{"ref":6414827,"tf":0.03125}},";":{"0":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"3":{"8":{"1":{"0":{"0":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}},"l":{"docs":{},"i":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.04895104895104895}}}}}}}},"b":{"docs":{},"r":{"docs":{"6413889":{"ref":6413889,"tf":0.031746031746031744}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.06}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},".":{"docs":{},"+":{"3":{"9":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"+":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"+":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}},"e":{"docs":{},"t":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6398787":{"ref":6398787,"tf":0.08333333333333333},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414152":{"ref":6414152,"tf":0.0078125},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6398787":{"ref":6398787,"tf":3.333333333333333},"6413512":{"ref":6413512,"tf":53.333333333333336},"6413720":{"ref":6413720,"tf":25}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"/":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"t":{"docs":{},"d":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6414152":{"ref":6414152,"tf":0.015625},"6414438":{"ref":6414438,"tf":0.010869565217391304}}}}},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6412566":{"ref":6412566,"tf":26.267441860465116}}}}}}},"o":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6413881":{"ref":6413881,"tf":0.044444444444444446},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"6404725":{"ref":6404725,"tf":27.5},"6411964":{"ref":6411964,"tf":0.04918032786885246},"6413244":{"ref":6413244,"tf":26.456349206349206},"6413541":{"ref":6413541,"tf":52.517857142857146},"6413908":{"ref":6413908,"tf":22.532258064516128},"6414093":{"ref":6414093,"tf":35.83333333333333},"6414558":{"ref":6414558,"tf":11.11111111111111},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"4":{"6":{"docs":{},".":{"0":{"8":{"4":{"9":{"8":{"9":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"z":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"3827055":{"ref":3827055,"tf":0.014705882352941176}},"/":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}}}}},"e":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412119":{"ref":6412119,"tf":0.0058823529411764705}}},"y":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"t":{"docs":{"6406161":{"ref":6406161,"tf":0.08333333333333333}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4272538":{"ref":4272538,"tf":0.00909090909090909},"4508230":{"ref":4508230,"tf":0.03225806451612903},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413944":{"ref":6413944,"tf":0.015384615384615385}},"n":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6410184":{"ref":6410184,"tf":0.013605442176870748},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411778":{"ref":6411778,"tf":0.016129032258064516}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6411574":{"ref":6411574,"tf":1.4285714285714284},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414613":{"ref":6414613,"tf":0.01818181818181818}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}},"e":{"docs":{},"n":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"y":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}},"=":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"+":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"/":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}},"/":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.025}}}}}}}}}}}}},"w":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{"6414438":{"ref":6414438,"tf":0.016304347826086956}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}},"b":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"i":{"docs":{},"d":{"docs":{"6409972":{"ref":6409972,"tf":21.532738095238095}},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}}},"_":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"4":{"6":{"docs":{},".":{"0":{"8":{"4":{"9":{"8":{"9":{"docs":{},",":{"1":{"1":{"docs":{},".":{"1":{"1":{"8":{"8":{"5":{"1":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6414240":{"ref":6414240,"tf":0.024691358024691357}},"s":{"docs":{},"[":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856},"6414093":{"ref":6414093,"tf":0.029411764705882353}}}}}}}}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}},"m":{"docs":{},"a":{"docs":{},"p":{"2":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}},"h":{"1":{"docs":{},">":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}},"2":{"docs":{},">":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"docs":{}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}},".":{"docs":{},"s":{"docs":{},"o":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}},"v":{"docs":{},"e":{"docs":{"6403728":{"ref":6403728,"tf":0.023076923076923078},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414530":{"ref":6414530,"tf":0.005},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}},"n":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"l":{"docs":{"3047391":{"ref":3047391,"tf":0.025},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6412428":{"ref":6412428,"tf":0.03488372093023256},"6413523":{"ref":6413523,"tf":0.0070921985815602835}},"e":{"docs":{},"r":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}},"g":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125},"6414558":{"ref":6414558,"tf":12.777777777777777}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}}},"s":{"docs":{},"h":{"docs":{"6395651":{"ref":6395651,"tf":20.80923076923077},"6414152":{"ref":6414152,"tf":0.03125}},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6414152":{"ref":6414152,"tf":18.364583333333332}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}},"r":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}},"c":{"docs":{},"k":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"5":{"docs":{"5306132":{"ref":5306132,"tf":20.004484304932735},"5351143":{"ref":5351143,"tf":21.428571428571427},"5549729":{"ref":5549729,"tf":25},"6412566":{"ref":6412566,"tf":26.267441860465116}}},"docs":{"78932":{"ref":78932,"tf":33.36274509803921},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6294393":{"ref":6294393,"tf":20},"6296451":{"ref":6296451,"tf":20},"6364675":{"ref":6364675,"tf":20.010135135135137},"6405964":{"ref":6405964,"tf":22.61111111111111},"6411169":{"ref":6411169,"tf":25},"6411282":{"ref":6411282,"tf":50},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":25},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.008902077151335312},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414123":{"ref":6414123,"tf":1.4285714285714284},"6414152":{"ref":6414152,"tf":0.015625},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414253":{"ref":6414253,"tf":25},"6414473":{"ref":6414473,"tf":20},"6414614":{"ref":6414614,"tf":20},"6414827":{"ref":6414827,"tf":33.33333333333333}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":1.4285714285714284}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":20.010135135135137}},"'":{"docs":{"6364675":{"ref":6364675,"tf":1.4285714285714284}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}},"t":{"docs":{},"p":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"i":{"docs":{},"g":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"?":{"docs":{},"w":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"h":{"docs":{},"l":{"docs":{},"=":{"docs":{},"e":{"docs":{},"n":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"v":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"o":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}}}}}}}}}}}},"w":{"3":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"/":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"4":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"t":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}},"docs":{}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"u":{"docs":{},"i":{"docs":{},"/":{"1":{"docs":{},".":{"8":{"docs":{},".":{"1":{"3":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"1":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"@":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"s":{"docs":{},"/":{"docs":{},"'":{"docs":{},"+":{"docs":{},"i":{"docs":{},"d":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414614":{"ref":6414614,"tf":0.012345679012345678}},"e":{"docs":{},"f":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414060":{"ref":6414060,"tf":2.0416666666666665}},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"7":{"6":{"3":{"2":{"2":{"8":{"docs":{},"/":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},"\"":{"docs":{},">":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"3":{"0":{"2":{"4":{"9":{"5":{"4":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"5":{"4":{"9":{"0":{"4":{"3":{"8":{"docs":{},"/":{"docs":{},"p":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"j":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"6":{"2":{"7":{"7":{"9":{"9":{"1":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"8":{"8":{"docs":{},"/":{"docs":{},"e":{"docs":{},"c":{"docs":{},"c":{"docs":{},"t":{"docs":{},"x":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}},"t":{"docs":{},"z":{"docs":{},"q":{"docs":{},"y":{"docs":{},"x":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"b":{"docs":{},"f":{"docs":{},"h":{"docs":{},"t":{"7":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"h":{"docs":{},"h":{"docs":{},"j":{"docs":{},"m":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"f":{"6":{"docs":{},"c":{"9":{"2":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"k":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"a":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"k":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"v":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"?":{"docs":{},"v":{"docs":{},"=":{"docs":{},"m":{"docs":{},"y":{"docs":{},"n":{"docs":{},"j":{"4":{"docs":{},"m":{"docs":{},"z":{"9":{"docs":{},"g":{"9":{"docs":{},"g":{"docs":{"6414473":{"ref":6414473,"tf":0.05}}}},"docs":{}}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},"_":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{},"w":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"w":{"docs":{},"o":{"docs":{},"j":{"docs":{},"a":{"docs":{},"n":{"docs":{},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"/":{"2":{"0":{"0":{"9":{"docs":{},"/":{"0":{"6":{"docs":{},"/":{"1":{"7":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"/":{"docs":{},"p":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"j":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}},"j":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"y":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"/":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"w":{"docs":{},"p":{"docs":{"6396782":{"ref":6396782,"tf":0.03125}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"k":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"a":{"docs":{},"/":{"docs":{},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"/":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"#":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"e":{"docs":{},"/":{"2":{"1":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"n":{"docs":{},"b":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"/":{"1":{"docs":{},".":{"6":{"docs":{},".":{"1":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},":":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"7":{"2":{"4":{"9":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571},"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}},"#":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"p":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"m":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413327":{"ref":6413327,"tf":0.025},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"'":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}}},"l":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6403728":{"ref":6403728,"tf":0.015384615384615385},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6412753":{"ref":6412753,"tf":0.046511627906976744},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414613":{"ref":6414613,"tf":0.01818181818181818}},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}},"l":{"docs":{},"o":{"docs":{},",":{"docs":{},"\\":{"docs":{},"n":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":1.7066666666666666},"4529460":{"ref":4529460,"tf":2.028436018957346},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6414093":{"ref":6414093,"tf":0.014705882352941176}},":":{"docs":{},"'":{"1":{"0":{"0":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}},"docs":{}},"docs":{}},"docs":{}}},"=":{"docs":{},"\"":{"5":{"3":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}},"5":{"docs":{"6294393":{"ref":6294393,"tf":0.04895104895104895}}},"docs":{}},"9":{"0":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}},"docs":{}},"docs":{}}}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"n":{"docs":{},"c":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"y":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"e":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"g":{"docs":{},"h":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}},"l":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"t":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"u":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":1.0108695652173914}}}},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}},"m":{"docs":{},"e":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413549":{"ref":6413549,"tf":0.017543859649122806}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6411964":{"ref":6411964,"tf":2.5163934426229506},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":1.6876456876456876},"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}},"w":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}},"d":{"docs":{},"f":{"5":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}},"docs":{}}},"y":{"docs":{},"p":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":1.6726013847675567}}}}}}}},"i":{"docs":{},"d":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414105":{"ref":6414105,"tf":20},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.005}},"=":{"docs":{},"\"":{"1":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}},"2":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}},"3":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}},"4":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}},"5":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}},"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"_":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"3":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"docs":{}}}}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"3":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"docs":{}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}},"s":{"docs":{},"i":{"docs":{},"a":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}}}}}}}}}},"a":{"docs":{},"a":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}},"m":{"docs":{},"g":{"1":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}},"docs":{}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"'":{"docs":{},"+":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"_":{"docs":{},"n":{"docs":{},"o":{"docs":{},"+":{"docs":{},"'":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},"+":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"+":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}},"b":{"docs":{},"t":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}},"b":{"docs":{},"b":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"1":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"2":{"docs":{},"n":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"3":{"docs":{},"r":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"docs":{}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}},"s":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"v":{"docs":{},"a":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"2":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}},"docs":{}}}}}}},"c":{"docs":{},"m":{"docs":{},"d":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"_":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"1":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"docs":{}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"1":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"docs":{}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}},"f":{"docs":{},"b":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"'":{"docs":{},"+":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"a":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"1":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}},"2":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}},"docs":{}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"%":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"#":{"docs":{},"{":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"%":{"docs":{},"=":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"$":{"docs":{},"{":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"}":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"1":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"docs":{}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"“":{"docs":{},"m":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414473":{"ref":6414473,"tf":0.1}},"l":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}},"s":{"docs":{},"?":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705}}}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"s":{"docs":{},"d":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}}}}},"t":{"docs":{},"'":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414827":{"ref":6414827,"tf":0.03125}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"e":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411194":{"ref":6411194,"tf":0.18181818181818182},"6412993":{"ref":6412993,"tf":0.008902077151335312}}}},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}},"m":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413549":{"ref":6413549,"tf":0.017543859649122806}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.04054054054054054},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6396782":{"ref":6396782,"tf":0.03125},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"a":{"docs":{},"g":{"docs":{"318630":{"ref":318630,"tf":1.6866666666666665},"814910":{"ref":814910,"tf":3.3749999999999996},"4529460":{"ref":4529460,"tf":0.052132701421800945},"6412119":{"ref":6412119,"tf":2.041176470588235},"6413541":{"ref":6413541,"tf":2.517857142857143},"6413744":{"ref":6413744,"tf":26.474725274725273},"6414060":{"ref":6414060,"tf":2.0833333333333335},"6414530":{"ref":6414530,"tf":0.03}},"e":{"docs":{},"'":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}},":":{"docs":{},"'":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"(":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},")":{"docs":{},"'":{"docs":{},"}":{"docs":{},",":{"5":{"0":{"0":{"0":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}},"/":{"docs":{},"e":{"docs":{},"l":{"docs":{"6414473":{"ref":6414473,"tf":1.25}}}}},"´":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{},"]":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}}}}}},"/":{"docs":{},"p":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"2":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"docs":{}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}}}},"g":{"docs":{"318630":{"ref":318630,"tf":0.04},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6414060":{"ref":6414060,"tf":0.041666666666666664}}},"h":{"docs":{},"o":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}}}}},"n":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413327":{"ref":6413327,"tf":22.025},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{"6414473":{"ref":6414473,"tf":0.05}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112},"6413036":{"ref":6413036,"tf":0.0625},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6414123":{"ref":6414123,"tf":0.018292682926829267},"6414614":{"ref":6414614,"tf":1.4285714285714284}},":":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"2":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"u":{"docs":{},"p":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"1":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"3827055":{"ref":3827055,"tf":1.2647058823529411},"4185821":{"ref":4185821,"tf":0.0125},"4460205":{"ref":4460205,"tf":0.15384615384615385},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827},"6413265":{"ref":6413265,"tf":1.4285714285714284},"6414614":{"ref":6414614,"tf":0.006172839506172839}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}},"l":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}},"p":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6409944":{"ref":6409944,"tf":1.4430641821946169},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6414152":{"ref":6414152,"tf":0.0078125}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"e":{"docs":{},"x":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412151":{"ref":6412151,"tf":0.023255813953488372},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413416":{"ref":6413416,"tf":1.6969696969696968}},"a":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"b":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413889":{"ref":6413889,"tf":1.6666666666666665},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"r":{"docs":{},"m":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6397574":{"ref":6397574,"tf":0.045454545454545456},"6413889":{"ref":6413889,"tf":0.047619047619047616}}}}},"r":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"_":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412720":{"ref":6412720,"tf":1.7254901960784312},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"v":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}},"n":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}},"e":{"docs":{},"t":{"docs":{"6413018":{"ref":6413018,"tf":21.29},"6414558":{"ref":6414558,"tf":11.11111111111111},"6414578":{"ref":6414578,"tf":28.57142857142857}}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"g":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"f":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}},"w":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.023696682464454975}},";":{"docs":{},"/":{"docs":{},"/":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.02843601895734597}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"6414438":{"ref":6414438,"tf":1.0054347826086956}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"6404725":{"ref":6404725,"tf":0.0410958904109589},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412334":{"ref":6412334,"tf":0.008333333333333333}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413720":{"ref":6413720,"tf":26.666666666666668}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"e":{"5":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}},"6":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}},"7":{"docs":{"318630":{"ref":318630,"tf":0.02},"6413908":{"ref":6413908,"tf":0.03225806451612903}}},"8":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6414558":{"ref":6414558,"tf":1.6940639269406392}},"+":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}}}},"9":{"docs":{"6414578":{"ref":6414578,"tf":2.5294117647058822}}},"docs":{"4272538":{"ref":4272538,"tf":1.6893939393939392},"6174688":{"ref":6174688,"tf":0.011111111111111112}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571},"6414093":{"ref":6414093,"tf":2.5},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}},"s":{"docs":{},"u":{"docs":{"6174688":{"ref":6174688,"tf":1.261111111111111},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6414438":{"ref":6414438,"tf":1.0108695652173914},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}},"'":{"docs":{},"v":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414152":{"ref":6414152,"tf":0.0078125},"6414613":{"ref":6414613,"tf":0.01818181818181818}}},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6413244":{"ref":6413244,"tf":0.013888888888888888}}},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412566":{"ref":6412566,"tf":0.023255813953488372},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414613":{"ref":6414613,"tf":0.03636363636363636}}},"l":{"docs":{},"l":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},".":{"docs":{"5306132":{"ref":5306132,"tf":1.0044843049327354}}},"=":{"0":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}},"1":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6414530":{"ref":6414530,"tf":0.005}},";":{"docs":{},"i":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"=":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{}},"f":{"docs":{},"(":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}},"!":{"docs":{},"b":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412863":{"ref":6412863,"tf":0.038461538461538464}}}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716}}}}}},":":{"docs":{},"%":{"docs":{},"m":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"o":{"docs":{"4460205":{"ref":4460205,"tf":25}},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"l":{"5":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"docs":{}}},"a":{"docs":{},"d":{"docs":{"4460205":{"ref":4460205,"tf":25.076923076923077},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"/":{"docs":{},"i":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"4460205":{"ref":4460205,"tf":2}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"w":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"j":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{"3047391":{"ref":3047391,"tf":20},"6364675":{"ref":6364675,"tf":20},"6412428":{"ref":6412428,"tf":18.68992248062015},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6414107":{"ref":6414107,"tf":34.44444444444444}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":34.61274509803921},"318630":{"ref":318630,"tf":18.35333333333333},"814910":{"ref":814910,"tf":14.285714285714285},"3047391":{"ref":3047391,"tf":20},"3802824":{"ref":3802824,"tf":51.264925373134325},"3827055":{"ref":3827055,"tf":17.94607843137255},"4047072":{"ref":4047072,"tf":100},"4185821":{"ref":4185821,"tf":100.0125},"4272538":{"ref":4272538,"tf":51.67121212121212},"4460205":{"ref":4460205,"tf":27.076923076923077},"4508230":{"ref":4508230,"tf":20},"4529460":{"ref":4529460,"tf":25},"5306132":{"ref":5306132,"tf":21.004484304932735},"5351143":{"ref":5351143,"tf":20},"5549729":{"ref":5549729,"tf":25},"6174688":{"ref":6174688,"tf":25.011111111111113},"6294393":{"ref":6294393,"tf":20},"6296451":{"ref":6296451,"tf":20},"6364675":{"ref":6364675,"tf":21.431949806949806},"6395651":{"ref":6395651,"tf":20},"6396782":{"ref":6396782,"tf":20},"6397574":{"ref":6397574,"tf":25},"6398787":{"ref":6398787,"tf":103.41666666666666},"6401696":{"ref":6401696,"tf":110.03703703703704},"6401946":{"ref":6401946,"tf":33.33333333333333},"6403354":{"ref":6403354,"tf":26.666666666666668},"6403728":{"ref":6403728,"tf":51.42857142857143},"6404725":{"ref":6404725,"tf":25},"6405964":{"ref":6405964,"tf":20.037037037037038},"6406161":{"ref":6406161,"tf":25},"6409944":{"ref":6409944,"tf":25},"6409972":{"ref":6409972,"tf":20},"6410184":{"ref":6410184,"tf":25},"6410224":{"ref":6410224,"tf":33.33333333333333},"6411169":{"ref":6411169,"tf":26.428571428571427},"6411194":{"ref":6411194,"tf":33.33333333333333},"6411282":{"ref":6411282,"tf":50},"6411574":{"ref":6411574,"tf":102.88345864661655},"6411636":{"ref":6411636,"tf":28.333333333333332},"6411637":{"ref":6411637,"tf":35.83333333333333},"6411778":{"ref":6411778,"tf":20.785359801488834},"6411964":{"ref":6411964,"tf":25},"6412119":{"ref":6412119,"tf":50},"6412151":{"ref":6412151,"tf":50},"6412259":{"ref":6412259,"tf":50},"6412334":{"ref":6412334,"tf":20},"6412428":{"ref":6412428,"tf":18.701550387596896},"6412566":{"ref":6412566,"tf":25},"6412589":{"ref":6412589,"tf":102.0126582278481},"6412607":{"ref":6412607,"tf":50},"6412632":{"ref":6412632,"tf":52},"6412720":{"ref":6412720,"tf":51.72549019607843},"6412753":{"ref":6412753,"tf":25},"6412863":{"ref":6412863,"tf":40},"6412913":{"ref":6412913,"tf":51.666666666666664},"6412993":{"ref":6412993,"tf":33.33333333333333},"6412997":{"ref":6412997,"tf":25.015873015873016},"6413018":{"ref":6413018,"tf":20},"6413036":{"ref":6413036,"tf":25},"6413183":{"ref":6413183,"tf":50},"6413240":{"ref":6413240,"tf":50},"6413244":{"ref":6413244,"tf":25},"6413265":{"ref":6413265,"tf":50},"6413327":{"ref":6413327,"tf":20},"6413356":{"ref":6413356,"tf":50},"6413416":{"ref":6413416,"tf":20.03030303030303},"6413440":{"ref":6413440,"tf":20},"6413444":{"ref":6413444,"tf":33.33333333333333},"6413512":{"ref":6413512,"tf":53.333333333333336},"6413523":{"ref":6413523,"tf":35.34042553191489},"6413541":{"ref":6413541,"tf":25},"6413549":{"ref":6413549,"tf":100},"6413720":{"ref":6413720,"tf":25},"6413732":{"ref":6413732,"tf":33.34972677595628},"6413744":{"ref":6413744,"tf":25.015384615384615},"6413778":{"ref":6413778,"tf":21.25},"6413881":{"ref":6413881,"tf":50},"6413889":{"ref":6413889,"tf":34.99999999999999},"6413908":{"ref":6413908,"tf":20},"6413944":{"ref":6413944,"tf":25},"6413951":{"ref":6413951,"tf":33.34482758620689},"6414060":{"ref":6414060,"tf":52.041666666666664},"6414093":{"ref":6414093,"tf":33.33333333333333},"6414105":{"ref":6414105,"tf":20},"6414107":{"ref":6414107,"tf":33.34761904761904},"6414123":{"ref":6414123,"tf":68.11353077816491},"6414152":{"ref":6414152,"tf":18.341145833333332},"6414240":{"ref":6414240,"tf":70.02469135802468},"6414253":{"ref":6414253,"tf":25},"6414376":{"ref":6414376,"tf":33.36036036036035},"6414438":{"ref":6414438,"tf":14.285714285714285},"6414473":{"ref":6414473,"tf":21.25},"6414530":{"ref":6414530,"tf":21.671666666666667},"6414558":{"ref":6414558,"tf":11.11111111111111},"6414578":{"ref":6414578,"tf":16.785714285714285},"6414613":{"ref":6414613,"tf":25},"6414614":{"ref":6414614,"tf":20.01851851851852},"6414755":{"ref":6414755,"tf":34.33333333333333},"6414782":{"ref":6414782,"tf":20},"6414827":{"ref":6414827,"tf":33.33333333333333}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}},")":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414473":{"ref":6414473,"tf":0.05}}}}}},"\"":{"docs":{},">":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"/":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"g":{"docs":{},"l":{"docs":{"6413744":{"ref":6413744,"tf":1.4285714285714284}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}},".":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"'":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}},"r":{"docs":{"6412993":{"ref":6412993,"tf":0.008902077151335312}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"(":{"docs":{},"m":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.008902077151335312}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"814910":{"ref":814910,"tf":42.94047619047619},"4272538":{"ref":4272538,"tf":0.004545454545454545},"4529460":{"ref":4529460,"tf":27.00473933649289},"5549729":{"ref":5549729,"tf":28.404761904761905},"6174688":{"ref":6174688,"tf":26.25},"6294393":{"ref":6294393,"tf":20},"6296451":{"ref":6296451,"tf":20},"6396782":{"ref":6396782,"tf":20.0625},"6403728":{"ref":6403728,"tf":51.43626373626374},"6405964":{"ref":6405964,"tf":20.037037037037038},"6410184":{"ref":6410184,"tf":25},"6411194":{"ref":6411194,"tf":35.33333333333333},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412334":{"ref":6412334,"tf":42.00416666666667},"6412607":{"ref":6412607,"tf":50},"6412753":{"ref":6412753,"tf":25.023255813953487},"6412863":{"ref":6412863,"tf":21.428571428571427},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":52.03174603174603},"6413018":{"ref":6413018,"tf":20},"6413183":{"ref":6413183,"tf":50.00714285714286},"6413240":{"ref":6413240,"tf":52},"6413265":{"ref":6413265,"tf":50},"6413356":{"ref":6413356,"tf":50},"6413416":{"ref":6413416,"tf":20.03030303030303},"6413440":{"ref":6413440,"tf":21.25},"6413944":{"ref":6413944,"tf":25},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414376":{"ref":6414376,"tf":35.36036036036035},"6414438":{"ref":6414438,"tf":29.57142857142857},"6414530":{"ref":6414530,"tf":41.67166666666667},"6414578":{"ref":6414578,"tf":14.285714285714285},"6414614":{"ref":6414614,"tf":21.440917107583772},"6414827":{"ref":6414827,"tf":33.33333333333333}}},"y":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"n":{"docs":{"6410184":{"ref":6410184,"tf":3.333333333333333}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"f":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"/":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}}}},"t":{"docs":{},"d":{"docs":{},"/":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"\"":{"docs":{},",":{"docs":{},"{":{"docs":{},"'":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":15.29114906832298}},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}}}}}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}},"i":{"docs":{},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}},"s":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4047072":{"ref":4047072,"tf":3.333333333333333},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413356":{"ref":6413356,"tf":3.333333333333333},"6413720":{"ref":6413720,"tf":1.6666666666666665},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"o":{"docs":{},"n":{"2":{"docs":{},".":{"docs":{},"j":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}},"docs":{"6403354":{"ref":6403354,"tf":26.682926829268293},"6414107":{"ref":6414107,"tf":34.458730158730155},"6414530":{"ref":6414530,"tf":0.005},"6414613":{"ref":6414613,"tf":25}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"6414107":{"ref":6414107,"tf":0.02857142857142857}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.02857142857142857}}}}}}}},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"s":{"docs":{},"g":{"docs":{},".":{"docs":{},"d":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}},"=":{"1":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}},"docs":{}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412993":{"ref":6412993,"tf":0.017804154302670624},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413889":{"ref":6413889,"tf":0.047619047619047616},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.005},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"=":{"docs":{},"\"":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}},"docs":{}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"1":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}},"2":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}},"docs":{}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}}}}}},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"$":{"docs":{},"{":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"}":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},":":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"0":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"1":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"2":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"docs":{}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455}}}}}}}}}}}}}}}}}},"v":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}},"i":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":1.6736596736596736},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414152":{"ref":6414152,"tf":1.6666666666666665}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},",":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"o":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"6411636":{"ref":6411636,"tf":25}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"318630":{"ref":318630,"tf":0.02},"3047391":{"ref":3047391,"tf":0.0125},"4185821":{"ref":4185821,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.017937219730941704},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6395651":{"ref":6395651,"tf":0.04},"6396782":{"ref":6396782,"tf":1.6666666666666665},"6397574":{"ref":6397574,"tf":0.045454545454545456},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6405964":{"ref":6405964,"tf":0.07407407407407407},"6411637":{"ref":6411637,"tf":0.03571428571428571},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412720":{"ref":6412720,"tf":1.6666666666666665},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414107":{"ref":6414107,"tf":0.02857142857142857},"6414152":{"ref":6414152,"tf":0.0078125},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}},"w":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"3802824":{"ref":3802824,"tf":0.029850746268656716},"4272538":{"ref":4272538,"tf":0.00909090909090909},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6364675":{"ref":6364675,"tf":0.010135135135135136},"6409944":{"ref":6409944,"tf":1.4285714285714284},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6414093":{"ref":6414093,"tf":0.04411764705882353},"6414107":{"ref":6414107,"tf":0.02857142857142857},"6414152":{"ref":6414152,"tf":0.0078125},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"b":{"docs":{},"i":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6411169":{"ref":6411169,"tf":0.06521739130434782}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}},"l":{"docs":{},"i":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}},"t":{"4":{"docs":{},".":{"0":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}},"docs":{}}},"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"x":{"docs":{},"t":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6411637":{"ref":6411637,"tf":0.03571428571428571},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413440":{"ref":6413440,"tf":1.25},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456},"6411778":{"ref":6411778,"tf":20.785359801488834},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6411778":{"ref":6411778,"tf":0.7772952853598015}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"o":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":1},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"e":{"docs":{},"\\":{"docs":{},"'":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279}}}}},"d":{"docs":{},"e":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"j":{"docs":{"6397574":{"ref":6397574,"tf":25},"6401946":{"ref":6401946,"tf":33.33333333333333},"6409944":{"ref":6409944,"tf":25.014492753623188},"6411574":{"ref":6411574,"tf":0.05263157894736842}}}},"'":{"docs":{"6401946":{"ref":6401946,"tf":0.047619047619047616}}},"j":{"docs":{"6401946":{"ref":6401946,"tf":2.5}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6294393":{"ref":6294393,"tf":0.02097902097902098},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414613":{"ref":6414613,"tf":0.01818181818181818}},".":{"docs":{},"j":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}},"j":{"docs":{"6409944":{"ref":6409944,"tf":26.443064182194615}}}},"t":{"docs":{},"h":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"i":{"docs":{},"c":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"f":{"docs":{},"y":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"\\":{"docs":{},"'":{"docs":{},"t":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"[":{"docs":{},"'":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"o":{"docs":{},"b":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818},"4529460":{"ref":4529460,"tf":0.018957345971563982},"6412259":{"ref":6412259,"tf":2.0384615384615383},"6413951":{"ref":6413951,"tf":0.011494252873563218}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411169":{"ref":6411169,"tf":0.043478260869565216},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411637":{"ref":6411637,"tf":2.625},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"h":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}},":":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}},":":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.05},"3802824":{"ref":3802824,"tf":0.04477611940298507},"4047072":{"ref":4047072,"tf":0.046511627906976744},"4185821":{"ref":4185821,"tf":0.0625},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6396782":{"ref":6396782,"tf":0.0625},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6401946":{"ref":6401946,"tf":0.031746031746031744},"6403354":{"ref":6403354,"tf":0.07317073170731707},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412753":{"ref":6412753,"tf":0.06976744186046512},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6413327":{"ref":6413327,"tf":0.025},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6413541":{"ref":6413541,"tf":0.05357142857142857},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413732":{"ref":6413732,"tf":0.03278688524590164},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":0.02857142857142857},"6414123":{"ref":6414123,"tf":0.018292682926829267},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414438":{"ref":6414438,"tf":0.010869565217391304},"6414782":{"ref":6414782,"tf":0.022727272727272728}},">":{"docs":{},"i":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"318630":{"ref":318630,"tf":0.02},"814910":{"ref":814910,"tf":0.041666666666666664},"3802824":{"ref":3802824,"tf":0.029850746268656716},"3827055":{"ref":3827055,"tf":0.029411764705882353},"4047072":{"ref":4047072,"tf":0.023255813953488372},"4185821":{"ref":4185821,"tf":0.0375},"4272538":{"ref":4272538,"tf":0.004545454545454545},"4460205":{"ref":4460205,"tf":0.07692307692307693},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6395651":{"ref":6395651,"tf":0.04},"6396782":{"ref":6396782,"tf":0.03125},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6398787":{"ref":6398787,"tf":0.08333333333333333},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6403728":{"ref":6403728,"tf":0.015384615384615385},"6404725":{"ref":6404725,"tf":0.0410958904109589},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6409944":{"ref":6409944,"tf":0.028985507246376812},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412151":{"ref":6412151,"tf":0.023255813953488372},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412334":{"ref":6412334,"tf":0.0125},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412589":{"ref":6412589,"tf":0.05063291139240506},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413327":{"ref":6413327,"tf":0.075},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6413944":{"ref":6413944,"tf":0.03076923076923077},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414376":{"ref":6414376,"tf":0.08108108108108109},"6414438":{"ref":6414438,"tf":0.016304347826086956},"6414473":{"ref":6414473,"tf":0.05},"6414530":{"ref":6414530,"tf":0.015},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414614":{"ref":6414614,"tf":0.012345679012345678},"6414755":{"ref":6414755,"tf":0.02040816326530612},"6414782":{"ref":6414782,"tf":0.022727272727272728},"6414827":{"ref":6414827,"tf":0.03125}},"'":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6395651":{"ref":6395651,"tf":0.04},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414152":{"ref":6414152,"tf":0.0078125},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414827":{"ref":6414827,"tf":0.03125}}},"v":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414152":{"ref":6414152,"tf":0.0078125},"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"d":{"docs":{"6413036":{"ref":6413036,"tf":0.0625}}}},"f":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6414240":{"ref":6414240,"tf":0.024691358024691357},"6414530":{"ref":6414530,"tf":0.005}}},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413732":{"ref":6413732,"tf":0.01639344262295082}},"'":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413951":{"ref":6413951,"tf":0.011494252873563218}}},"`":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}},"m":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413327":{"ref":6413327,"tf":0.025},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414827":{"ref":6414827,"tf":0.03125}}},"r":{"docs":{},"e":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}},"a":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}},"a":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"3047391":{"ref":3047391,"tf":0.025},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}},"e":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334},"6414578":{"ref":6414578,"tf":0.029411764705882353}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":0.005},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6395651":{"ref":6395651,"tf":0.04},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6414473":{"ref":6414473,"tf":0.05}}}}}}}}},"i":{"docs":{"6294393":{"ref":6294393,"tf":0.013986013986013986},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413327":{"ref":6413327,"tf":0.05},"6413720":{"ref":6413720,"tf":0.022222222222222223},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414152":{"ref":6414152,"tf":0.0078125},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414558":{"ref":6414558,"tf":0.0136986301369863}}},"e":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6403354":{"ref":6403354,"tf":0.016260162601626018},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414152":{"ref":6414152,"tf":0.0078125},"6414530":{"ref":6414530,"tf":0.005}},"n":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"e":{"docs":{},"e":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"s":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}},"a":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413440":{"ref":6413440,"tf":0.013333333333333334}},"n":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},"y":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}}},"i":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414473":{"ref":6414473,"tf":0.05},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}},"m":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}},"s":{"docs":{},"o":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}},"o":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413327":{"ref":6413327,"tf":0.025},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"a":{"docs":{},"y":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}},"e":{"docs":{},"e":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}},"n":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"u":{"docs":{},"r":{"docs":{},"f":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}},"b":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}},"t":{"docs":{},"w":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"u":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02},"3047391":{"ref":3047391,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6414093":{"ref":6414093,"tf":0.014705882352941176}},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}},"s":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"p":{"docs":{},".":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6414755":{"ref":6414755,"tf":0.02040816326530612}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991},"5351143":{"ref":5351143,"tf":0.024390243902439025}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6411964":{"ref":6411964,"tf":0.03278688524590164}},">":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}}}}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"b":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}}}}}}}}}}}}},"i":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"+":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"1":{"docs":{},".":{"6":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"$":{"docs":{},"(":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}},"\"":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"@":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}},"^":{"docs":{},"(":{"docs":{},"[":{"docs":{},"_":{"docs":{},"a":{"docs":{"6413444":{"ref":6413444,"tf":0.024096385542168676}}}}}}}}}}}},"a":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6414473":{"ref":6414473,"tf":0.05}}},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.03278688524590164}}}},"e":{"docs":{},"m":{"docs":{},">":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}}},"d":{"docs":{},"u":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"o":{"docs":{"318630":{"ref":318630,"tf":0.02},"6413018":{"ref":6413018,"tf":0.013333333333333334}},"e":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4508230":{"ref":4508230,"tf":0.03225806451612903},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411636":{"ref":6411636,"tf":0.017241379310344827}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"i":{"docs":{},"d":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6396782":{"ref":6396782,"tf":0.03125},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"r":{"docs":{},"=":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"3047391":{"ref":3047391,"tf":0.025}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"318630":{"ref":318630,"tf":0.02},"4047072":{"ref":4047072,"tf":0.023255813953488372},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413327":{"ref":6413327,"tf":0.025},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414060":{"ref":6414060,"tf":0.041666666666666664},"6414253":{"ref":6414253,"tf":0.021739130434782608}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"'":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}},"n":{"docs":{},"c":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"i":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6411636":{"ref":6411636,"tf":0.017241379310344827}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413444":{"ref":6413444,"tf":0.012048192771084338}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}},"\"":{"0":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{},"+":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}},"e":{"docs":{},"d":{"docs":{"5549729":{"ref":5549729,"tf":0.07142857142857142}}}}},"o":{"docs":{},"w":{"docs":{"6411636":{"ref":6411636,"tf":0.05172413793103448},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"o":{"docs":{},"b":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}},"r":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"n":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}},"h":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"k":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414376":{"ref":6414376,"tf":0.02702702702702703}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"x":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}},"*":{"docs":{},"*":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"m":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}},"t":{"docs":{},"'":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}},"k":{"docs":{},"k":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}}}},"r":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6296451":{"ref":6296451,"tf":0.024691358024691357},"6403354":{"ref":6403354,"tf":0.024390243902439025},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":0.02857142857142857}},"e":{"docs":{},">":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414827":{"ref":6414827,"tf":0.03125}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"a":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414530":{"ref":6414530,"tf":0.005}},"r":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"?":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856},"6414093":{"ref":6414093,"tf":0.014705882352941176}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6414253":{"ref":6414253,"tf":0.043478260869565216}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"!":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"y":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}}},"i":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},")":{"docs":{},".":{"docs":{},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412589":{"ref":6412589,"tf":0.0379746835443038},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.025974025974025976},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414060":{"ref":6414060,"tf":0.041666666666666664}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"318630":{"ref":318630,"tf":0.02},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413908":{"ref":6413908,"tf":0.03225806451612903}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"h":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"docs":{}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}}}}}}}}}}}}}},"y":{"2":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}},"i":{"docs":{},"f":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414152":{"ref":6414152,"tf":0.0078125}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}},"[":{"7":{"docs":{},",":{"2":{"5":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},",":{"docs":{},",":{"7":{"docs":{},",":{"4":{"0":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}}},"docs":{}},"docs":{}}},"docs":{},"[":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"'":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"5306132":{"ref":5306132,"tf":0.013452914798206279},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413778":{"ref":6413778,"tf":0.009345794392523364}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.01744186046511628},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413778":{"ref":6413778,"tf":0.018691588785046728}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279},"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412428":{"ref":6412428,"tf":0.011627906976744186}},"s":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"6405964":{"ref":6405964,"tf":0.037037037037037035},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"i":{"docs":{},"x":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}},"o":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"3802824":{"ref":3802824,"tf":1.25},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.03333333333333333},"6296451":{"ref":6296451,"tf":3.3456790123456788},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411636":{"ref":6411636,"tf":3.333333333333333},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":2},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":1.25},"6414152":{"ref":6414152,"tf":0.0078125},"6414558":{"ref":6414558,"tf":0.0410958904109589},"6414614":{"ref":6414614,"tf":1.4409171075837741}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"e":{"docs":{},"m":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"6414782":{"ref":6414782,"tf":0.045454545454545456}}}}},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"p":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413732":{"ref":6413732,"tf":0.01639344262295082}},"l":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414782":{"ref":6414782,"tf":1.6666666666666665}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414755":{"ref":6414755,"tf":0.061224489795918366}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112},"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}},"a":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":1.25}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"t":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412589":{"ref":6412589,"tf":2}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6413744":{"ref":6413744,"tf":25},"6414152":{"ref":6414152,"tf":0.015625}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"t":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082},"6413881":{"ref":6413881,"tf":0.022222222222222223}}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6401946":{"ref":6401946,"tf":35.86507936507936},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6414253":{"ref":6414253,"tf":27}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}},"j":{"docs":{"6412259":{"ref":6412259,"tf":2}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}},"j":{"docs":{"6412259":{"ref":6412259,"tf":50},"6414253":{"ref":6414253,"tf":25}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}},"x":{"docs":{},"y":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.016129032258064516}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}},"u":{"docs":{},"t":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6413541":{"ref":6413541,"tf":2.5},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414827":{"ref":6414827,"tf":0.03125}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}},"n":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}},"s":{"docs":{},"h":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"l":{"docs":{},"l":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6414123":{"ref":6414123,"tf":0.012195121951219513}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}}}}}}},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6414613":{"ref":6414613,"tf":0.03636363636363636}},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"6294393":{"ref":6294393,"tf":1.6666666666666665},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}},"s":{"docs":{"3047391":{"ref":3047391,"tf":22},"4272538":{"ref":4272538,"tf":1.6712121212121211},"6403354":{"ref":6403354,"tf":26.682926829268293},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"e":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4272538":{"ref":4272538,"tf":0.004545454545454545}},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"s":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"6411636":{"ref":6411636,"tf":25}}}}}}}},"g":{"docs":{},"e":{"docs":{"3802824":{"ref":3802824,"tf":1.294776119402985},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6364675":{"ref":6364675,"tf":0.02364864864864865},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411282":{"ref":6411282,"tf":2},"6412428":{"ref":6412428,"tf":2.0697674418604652},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6412997":{"ref":6412997,"tf":0.09523809523809523},"6413036":{"ref":6413036,"tf":0.0625},"6413183":{"ref":6413183,"tf":1.4428571428571426},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413416":{"ref":6413416,"tf":1.6969696969696968},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413549":{"ref":6413549,"tf":0.08771929824561403},"6413732":{"ref":6413732,"tf":2.0163934426229506},"6414060":{"ref":6414060,"tf":2.0416666666666665},"6414376":{"ref":6414376,"tf":0.05405405405405406},"6414782":{"ref":6414782,"tf":0.045454545454545456}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6414152":{"ref":6414152,"tf":0.0078125}}}},"b":{"docs":{},"r":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"u":{"docs":{},"y":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"(":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"x":{"1":{"2":{"3":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"1":{"2":{"3":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6412607":{"ref":6412607,"tf":2.0357142857142856},"6413440":{"ref":6413440,"tf":21.25},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414107":{"ref":6414107,"tf":0.014285714285714285}}},"t":{"docs":{"6413036":{"ref":6413036,"tf":25.0625}}}},"d":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}},"t":{"docs":{},"h":{"docs":{"6413327":{"ref":6413327,"tf":20}},"(":{"docs":{},"\"":{"docs":{},"/":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}},"n":{"docs":{},"e":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}}}}}}}},"h":{"docs":{},"p":{"5":{"docs":{"6410224":{"ref":6410224,"tf":33.33333333333333}}},"docs":{"4508230":{"ref":4508230,"tf":20},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6411964":{"ref":6411964,"tf":25},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413881":{"ref":6413881,"tf":50},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414530":{"ref":6414530,"tf":0.015},"6414614":{"ref":6414614,"tf":20},"6414782":{"ref":6414782,"tf":20}},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"4508230":{"ref":4508230,"tf":2}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}}}},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}},"n":{"docs":{},"e":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"{":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.03278688524590164}},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6413356":{"ref":6413356,"tf":0.03278688524590164}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}},"[":{"0":{"docs":{"6414152":{"ref":6414152,"tf":0.015625}}},"docs":{}}}}}},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0234375}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}},"j":{"docs":{"6414152":{"ref":6414152,"tf":18.341145833333332}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"6395651":{"ref":6395651,"tf":0.04},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":0.005}},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}},"y":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}},"o":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}}},"u":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}},"g":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}},"i":{"docs":{},"n":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664},"6411194":{"ref":6411194,"tf":35.378787878787875},"6411778":{"ref":6411778,"tf":0.7853598014888338},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412997":{"ref":6412997,"tf":25.015873015873016},"6414438":{"ref":6414438,"tf":14.285714285714285}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414530":{"ref":6414530,"tf":0.01},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"a":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}},"s":{"docs":{},"t":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":26.261111111111113},"6397574":{"ref":6397574,"tf":0.045454545454545456},"6413720":{"ref":6413720,"tf":1.6814814814814814},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414530":{"ref":6414530,"tf":0.005},"6414782":{"ref":6414782,"tf":0.045454545454545456}},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"h":{"docs":{},"p":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{},"q":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"/":{"docs":{},"z":{"docs":{},"i":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"4185821":{"ref":4185821,"tf":1.1236111111111111},"6395651":{"ref":6395651,"tf":0.8092307692307693},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414473":{"ref":6414473,"tf":0.05}},"e":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1236111111111111},"6413018":{"ref":6413018,"tf":0.013333333333333334}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"3802824":{"ref":3802824,"tf":1.2649253731343284},"6412913":{"ref":6412913,"tf":0.012987012987012988}},"u":{"docs":{},"l":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414613":{"ref":6414613,"tf":0.01818181818181818}}},"p":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}},"e":{"docs":{},"o":{"docs":{},"p":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}},"r":{"docs":{"6413744":{"ref":6413744,"tf":0.03076923076923077},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}},"l":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}},"o":{"docs":{},"m":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}},"r":{"docs":{},"m":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}},"i":{"docs":{},"o":{"docs":{},"d":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664}}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6411778":{"ref":6411778,"tf":0.008064516129032258}}}},"c":{"docs":{"318630":{"ref":318630,"tf":0.02}},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414240":{"ref":6414240,"tf":0.012345679012345678}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}}}}}}},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"6414152":{"ref":6414152,"tf":16.666666666666664}}}}}}},"n":{"docs":{},"g":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"s":{"docs":{},"d":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}},"x":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}},"r":{"docs":{},"e":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6414558":{"ref":6414558,"tf":0.0273972602739726}},"a":{"docs":{},"l":{"docs":{"318630":{"ref":318630,"tf":1.6866666666666665},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"l":{"docs":{},"i":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411574":{"ref":6411574,"tf":0.05263157894736842},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414827":{"ref":6414827,"tf":0.03125}}},"y":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6413444":{"ref":6413444,"tf":0.012048192771084338}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"d":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"i":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}},"e":{"docs":{},"r":{"docs":{"6412753":{"ref":6412753,"tf":3.333333333333333}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.01744186046511628},"6412589":{"ref":6412589,"tf":0.0379746835443038},"6412913":{"ref":6412913,"tf":1.6796536796536794},"6412993":{"ref":6412993,"tf":0.008902077151335312},"6413018":{"ref":6413018,"tf":1.2633333333333334},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":1.6666666666666665},"6414060":{"ref":6414060,"tf":0.041666666666666664},"6414105":{"ref":6414105,"tf":2},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414240":{"ref":6414240,"tf":0.037037037037037035},"6414530":{"ref":6414530,"tf":0.015},"6414827":{"ref":6414827,"tf":2.5}},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}},"n":{"docs":{},"r":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}}},"y":{"docs":{},"p":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}},"e":{"docs":{},"x":{"docs":{"3047391":{"ref":3047391,"tf":22.0375},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6413444":{"ref":6413444,"tf":35.857429718875494}},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}}}}}}}},"p":{"docs":{},"(":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"y":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"v":{"docs":{"318630":{"ref":318630,"tf":0.02},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":1.6726013847675567},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6414093":{"ref":6414093,"tf":0.014705882352941176}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009},"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"6174688":{"ref":6174688,"tf":0.022222222222222223},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412607":{"ref":6412607,"tf":0.03571428571428571}}}},"n":{"docs":{},"t":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.028985507246376812}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"6409972":{"ref":6409972,"tf":0.041666666666666664}}}}}}}},"g":{"docs":{},"n":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"l":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"o":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"\"":{"docs":{},">":{"docs":{},"j":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}},"s":{"docs":{},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}},"e":{"docs":{},"v":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"v":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"u":{"docs":{},"b":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"?":{"docs":{},"v":{"docs":{},"=":{"docs":{},"m":{"docs":{},"y":{"docs":{},"n":{"docs":{},"j":{"4":{"docs":{},"m":{"docs":{},"z":{"9":{"docs":{},"g":{"9":{"docs":{},"g":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414473":{"ref":6414473,"tf":0.05}}}}}}}}}}},"docs":{}}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"k":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"w":{"docs":{},"o":{"docs":{},"j":{"docs":{},"a":{"docs":{},"n":{"docs":{},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"/":{"2":{"0":{"0":{"9":{"docs":{},"/":{"0":{"6":{"docs":{},"/":{"1":{"7":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"8":{"8":{"docs":{},"/":{"docs":{},"t":{"docs":{},"z":{"docs":{},"q":{"docs":{},"y":{"docs":{},"x":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"g":{"docs":{},"h":{"docs":{},"h":{"docs":{},"j":{"docs":{},"m":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}},"f":{"6":{"docs":{},"c":{"9":{"2":{"docs":{},"/":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"y":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"w":{"docs":{},"p":{"docs":{"6396782":{"ref":6396782,"tf":0.03125}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"/":{"1":{"docs":{},".":{"6":{"docs":{},".":{"1":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}}},"(":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"6411964":{"ref":6411964,"tf":2.5},"6414755":{"ref":6414755,"tf":0.04081632653061224}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}},"a":{"docs":{},"t":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"e":{"docs":{},".":{"docs":{},"f":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"j":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412259":{"ref":6412259,"tf":0.11538461538461539}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"3047391":{"ref":3047391,"tf":0.025},"3827055":{"ref":3827055,"tf":0.029411764705882353},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413523":{"ref":6413523,"tf":0.0070921985815602835}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"]":{"docs":{},".":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"t":{"docs":{"6412589":{"ref":6412589,"tf":0.02531645569620253},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"6411574":{"ref":6411574,"tf":1.4285714285714284}},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"j":{"docs":{},"o":{"1":{"docs":{},".":{"6":{"docs":{},"/":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"2":{"docs":{},".":{"docs":{},"j":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}},"docs":{}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}},"q":{"docs":{"6397574":{"ref":6397574,"tf":2},"6404725":{"ref":6404725,"tf":0.0273972602739726}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414530":{"ref":6414530,"tf":0.01}}}}},"i":{"docs":{},"r":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413327":{"ref":6413327,"tf":0.025},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728}}}}}}},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"6414107":{"ref":6414107,"tf":1.1111111111111112}}}}},"l":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}},"a":{"docs":{},"c":{"docs":{"6411169":{"ref":6411169,"tf":27.857142857142858},"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"$":{"docs":{},".":{"docs":{},"j":{"docs":{},"q":{"docs":{},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}},"o":{"docs":{"4508230":{"ref":4508230,"tf":20}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":18.771317829457363}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"6364675":{"ref":6364675,"tf":1.4285714285714284}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"3827055":{"ref":3827055,"tf":1.2794117647058822},"4460205":{"ref":4460205,"tf":0.07692307692307693},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413327":{"ref":6413327,"tf":0.025},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413732":{"ref":6413732,"tf":0.01639344262295082}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},":":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.01744186046511628}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"[":{"docs":{},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{"6411778":{"ref":6411778,"tf":20},"6413951":{"ref":6413951,"tf":33.33333333333333}}},"b":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"6411778":{"ref":6411778,"tf":20.76923076923077},"6413951":{"ref":6413951,"tf":33.34482758620689}}}},"n":{"docs":{},"g":{"docs":{"6413881":{"ref":6413881,"tf":0.044444444444444446}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}}}},"t":{"docs":{},"e":{"docs":{"6364675":{"ref":6364675,"tf":0.02702702702702703}}},"i":{"docs":{},"n":{"docs":{},"g":{"3":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}},"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.016891891891891893}},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"[":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"]":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"#":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"docs":{}}}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757}}}}}}}}}},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}},"w":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"(":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"f":{"docs":{"6413778":{"ref":6413778,"tf":0.028037383177570093}}}},"g":{"docs":{},"b":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"s":{"docs":{},"s":{"docs":{"6412753":{"ref":6412753,"tf":28.37984496124031}}}},"y":{"docs":{},"a":{"docs":{},"n":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}},"b":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"e":{"docs":{},"e":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6414376":{"ref":6414376,"tf":2.027027027027027},"6414473":{"ref":6414473,"tf":0.05},"6414530":{"ref":6414530,"tf":0.01},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414827":{"ref":6414827,"tf":0.03125}},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082},"6414782":{"ref":6414782,"tf":0.022727272727272728}}},"m":{"docs":{"6364675":{"ref":6364675,"tf":1.4319498069498067},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6414152":{"ref":6414152,"tf":0.0078125},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}},"n":{"docs":{},"d":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4047072":{"ref":4047072,"tf":0.023255813953488372},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414376":{"ref":6414376,"tf":2.054054054054054},"6414827":{"ref":6414827,"tf":0.03125}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.03333333333333333},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6413951":{"ref":6413951,"tf":0.022988505747126436}}},"s":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":1.3088235294117647},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6409972":{"ref":6409972,"tf":1.4910714285714284},"6410224":{"ref":6410224,"tf":2},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":1.4714285714285713},"6413944":{"ref":6413944,"tf":0.03076923076923077},"6414253":{"ref":6414253,"tf":2.0217391304347827},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414614":{"ref":6414614,"tf":1.447089947089947}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414253":{"ref":6414253,"tf":0.021739130434782608}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}},"f":{"docs":{},"=":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6413444":{"ref":6413444,"tf":2.5120481927710845},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"e":{"docs":{},"r":{"docs":{"6413240":{"ref":6413240,"tf":2}},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"318630":{"ref":318630,"tf":0.02},"4508230":{"ref":4508230,"tf":0.03225806451612903},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414376":{"ref":6414376,"tf":2}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}},"i":{"docs":{},"c":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009},"6411964":{"ref":6411964,"tf":2.5491803278688523},"6412428":{"ref":6412428,"tf":16.67829457364341},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}},"e":{"docs":{},"x":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}}},"t":{"docs":{"78932":{"ref":78932,"tf":1.25},"318630":{"ref":318630,"tf":0.02},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6403728":{"ref":6403728,"tf":1.4285714285714284},"6409972":{"ref":6409972,"tf":1.4285714285714284},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412589":{"ref":6412589,"tf":2},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":1.4285714285714284},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413881":{"ref":6413881,"tf":1.6888888888888887},"6414152":{"ref":6414152,"tf":0.015625},"6414438":{"ref":6414438,"tf":0.010869565217391304}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"4047072":{"ref":4047072,"tf":3.333333333333333}},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":1.4428571428571426},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991}},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":35.34042553191489}},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"{":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":0.014184397163120567}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"4047072":{"ref":4047072,"tf":0.023255813953488372},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413244":{"ref":6413244,"tf":0.013888888888888888}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6397574":{"ref":6397574,"tf":2.0454545454545454},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.02857142857142857}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6414827":{"ref":6414827,"tf":2.5}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413444":{"ref":6413444,"tf":0.024096385542168676},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}},"u":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":0.04285714285714286}}}},"y":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"c":{"docs":{},"k":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414438":{"ref":6414438,"tf":0.010869565217391304}}}},"l":{"docs":{},"l":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"6396782":{"ref":6396782,"tf":1.6979166666666665},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413356":{"ref":6413356,"tf":0.01639344262295082}},"=":{"docs":{},"\"":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.023076923076923078},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414530":{"ref":6414530,"tf":0.005}},":":{"2":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},":":{"1":{"1":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"docs":{}},"5":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{"6413183":{"ref":6413183,"tf":0.02142857142857143}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},";":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},":":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"2":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}},"'":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},":":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},";":{"docs":{},"'":{"docs":{},"/":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"z":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":1.2686915887850467}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6411964":{"ref":6411964,"tf":0.03278688524590164}},">":{"docs":{},"a":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}},"f":{"docs":{},"t":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"1":{"docs":{},"_":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"2":{"docs":{},"n":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}},"docs":{}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"b":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}}}}}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"3047391":{"ref":3047391,"tf":2.0125},"6364675":{"ref":6364675,"tf":0.010135135135135136},"6403354":{"ref":6403354,"tf":0.016260162601626018},"6405964":{"ref":6405964,"tf":2.537037037037037},"6412993":{"ref":6412993,"tf":35.02077151335311},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413444":{"ref":6413444,"tf":0.024096385542168676}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}},"o":{"docs":{},"f":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.011869436201780416}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.004166666666666667}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}}},"o":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6414558":{"ref":6414558,"tf":0.0136986301369863}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"5351143":{"ref":5351143,"tf":1.4773519163763065}}}},"e":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6413889":{"ref":6413889,"tf":1.6666666666666665}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"6412913":{"ref":6412913,"tf":1.6666666666666665},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}},"c":{"docs":{},"k":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{"3827055":{"ref":3827055,"tf":17.931372549019606},"6413416":{"ref":6413416,"tf":20.03030303030303}}}}},"f":{"docs":{},"f":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"p":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}},"m":{"docs":{},"b":{"docs":{},"l":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}},"e":{"docs":{},"p":{"docs":{"6411637":{"ref":6411637,"tf":2.607142857142857}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412863":{"ref":6412863,"tf":0.038461538461538464},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413908":{"ref":6413908,"tf":2.5}},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"f":{"docs":{},"i":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}},"e":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412720":{"ref":6412720,"tf":0.058823529411764705}}}}}}}}}},"u":{"docs":{},"l":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},"z":{"docs":{},"e":{"docs":{"4529460":{"ref":4529460,"tf":0.018957345971563982}},"=":{"docs":{},"\"":{"1":{"8":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"docs":{}},"7":{"docs":{"6413183":{"ref":6413183,"tf":0.02142857142857143}}},"docs":{}}},":":{"2":{"2":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"d":{"docs":{},"e":{"docs":{"318630":{"ref":318630,"tf":0.02},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412428":{"ref":6412428,"tf":0.023255813953488372},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6414107":{"ref":6414107,"tf":1.1111111111111112}}}}},"g":{"docs":{},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6413889":{"ref":6413889,"tf":0.015873015873015872}}}},"t":{"docs":{},"e":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411964":{"ref":6411964,"tf":0.03278688524590164},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413889":{"ref":6413889,"tf":0.031746031746031744},"6414152":{"ref":6414152,"tf":0.015625}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412913":{"ref":6412913,"tf":0.03896103896103896}}}}}},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6412863":{"ref":6412863,"tf":0.019230769230769232}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"1":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"docs":{}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941},"6414530":{"ref":6414530,"tf":0.005}}}},"v":{"docs":{"6174688":{"ref":6174688,"tf":1.261111111111111},"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.005},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},"o":{"docs":{},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6414105":{"ref":6414105,"tf":0.01904761904761905},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"a":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6414107":{"ref":6414107,"tf":0.02857142857142857}},"s":{"docs":{},"}":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6396782":{"ref":6396782,"tf":0.03125},"6410184":{"ref":6410184,"tf":0.006802721088435374}},"e":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"1":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}},"n":{"docs":{},"d":{"docs":{"6412993":{"ref":6412993,"tf":1.6666666666666665}}}}},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{"6397574":{"ref":6397574,"tf":25.068181818181817},"6409944":{"ref":6409944,"tf":25}}}}}}}}},"f":{"docs":{},"t":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}}},"r":{"docs":{},"t":{"docs":{"6413416":{"ref":6413416,"tf":1.6969696969696968},"6414473":{"ref":6414473,"tf":0.05}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}},"p":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}},"i":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.012345679012345678}}}},"a":{"docs":{},"l":{"docs":{"6174688":{"ref":6174688,"tf":1.25},"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}},"n":{"docs":{},"d":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}},"o":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414614":{"ref":6414614,"tf":0.006172839506172839}}},"r":{"docs":{},"t":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414152":{"ref":6414152,"tf":0.0078125}}}}}}},"b":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412913":{"ref":6412913,"tf":1.7056277056277054},"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}},"i":{"docs":{},"d":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"r":{"docs":{},"e":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6411169":{"ref":6411169,"tf":0.021739130434782608},"6414152":{"ref":6414152,"tf":0.0078125},"6414530":{"ref":6414530,"tf":0.005}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}},":":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232}}}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6396782":{"ref":6396782,"tf":0.03125},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412720":{"ref":6412720,"tf":1.7254901960784312},"6413523":{"ref":6413523,"tf":0.014184397163120567}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412119":{"ref":6412119,"tf":2.0058823529411764},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413244":{"ref":6413244,"tf":1.456349206349206},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414578":{"ref":6414578,"tf":2.5},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"_":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"y":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"2":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}},"r":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6414530":{"ref":6414530,"tf":0.005}},"e":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"6398787":{"ref":6398787,"tf":3.4166666666666665}}}}}}}},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.013986013986013986}}}},"a":{"2":{"5":{"6":{"docs":{"6395651":{"ref":6395651,"tf":20.80923076923077}}},"docs":{}},"docs":{}},"docs":{},"r":{"docs":{},"e":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414782":{"ref":6414782,"tf":23.333333333333332}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":1.4478021978021975},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414107":{"ref":6414107,"tf":1.1111111111111112},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414558":{"ref":6414558,"tf":0.0136986301369863}}},"p":{"docs":{},"l":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},"f":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"4460205":{"ref":4460205,"tf":0.07692307692307693},"6413908":{"ref":6413908,"tf":0.03225806451612903}},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{"318630":{"ref":318630,"tf":1.6666666666666665}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"5549729":{"ref":5549729,"tf":0.07142857142857142},"6413944":{"ref":6413944,"tf":0.015384615384615385}},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411637":{"ref":6411637,"tf":33.33333333333333},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.01744186046511628},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413036":{"ref":6413036,"tf":0.0625},"6413523":{"ref":6413523,"tf":0.028368794326241134},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413549":{"ref":6413549,"tf":3.3684210526315788},"6414123":{"ref":6414123,"tf":1.4285714285714284},"6414152":{"ref":6414152,"tf":0.0078125},"6414530":{"ref":6414530,"tf":0.005}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413523":{"ref":6413523,"tf":0.014184397163120567}}}}}},"e":{"docs":{},"r":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6411282":{"ref":6411282,"tf":2.148148148148148}}}}},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"6414152":{"ref":6414152,"tf":18.333333333333332}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{"4529460":{"ref":4529460,"tf":0.014218009478672985}}},"a":{"docs":{"6364675":{"ref":6364675,"tf":20.006756756756758}}}},"m":{"docs":{"6413549":{"ref":6413549,"tf":0.03508771929824561}},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"6413549":{"ref":6413549,"tf":0.05263157894736842}}}}}},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411636":{"ref":6411636,"tf":3.333333333333333},"6414578":{"ref":6414578,"tf":2.5294117647058822}}}}}},"o":{"docs":{},"w":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}},"r":{"docs":{},"c":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414060":{"ref":6414060,"tf":0.041666666666666664}},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"j":{"docs":{},"s":{"docs":{},"?":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"d":{"docs":{},"=":{"1":{"8":{"2":{"7":{"2":{"2":{"7":{"9":{"5":{"1":{"1":{"5":{"4":{"4":{"4":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"x":{"docs":{},"f":{"docs":{},"b":{"docs":{},"m":{"docs":{},"l":{"docs":{},"=":{"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"b":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"1":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"w":{"docs":{},"b":{"docs":{},"z":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"/":{"1":{"docs":{},".":{"6":{"docs":{},".":{"1":{"docs":{},"/":{"docs":{},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"/":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"l":{"docs":{},"/":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},"/":{"docs":{},".":{"docs":{},".":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"j":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"p":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}},"docs":{}}}}}}}}}}}}},"m":{"docs":{"6409972":{"ref":6409972,"tf":0.041666666666666664}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"3047391":{"ref":3047391,"tf":0.025}},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.025}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}},"v":{"docs":{},"r":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411964":{"ref":6411964,"tf":0.03278688524590164}}}}}}},"n":{"docs":{},"i":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"t":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413951":{"ref":6413951,"tf":0.011494252873563218}},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.01744186046511628},"6414827":{"ref":6414827,"tf":0.03125}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}},"i":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"(":{"docs":{},"'":{"docs":{},":":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"b":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"[":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"=":{"docs":{},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"[":{"0":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}},"docs":{}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.04}},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"i":{"docs":{},"d":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}},",":{"docs":{},"o":{"docs":{},"n":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413512":{"ref":6413512,"tf":0.030303030303030304}}},"e":{"docs":{},"m":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413356":{"ref":6413356,"tf":0.03278688524590164}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"#":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412589":{"ref":6412589,"tf":0.0379746835443038}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}}}}}},"n":{"docs":{},"k":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414530":{"ref":6414530,"tf":0.005}}},"g":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"s":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}},"r":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"e":{"docs":{},"r":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}},"e":{"docs":{},"'":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}},"b":{"docs":{},"i":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}},"m":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414578":{"ref":6414578,"tf":0.029411764705882353}},"s":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}},"t":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}},"'":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6413327":{"ref":6413327,"tf":0.025}}}},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413889":{"ref":6413889,"tf":0.015873015873015872}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"w":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6401946":{"ref":6401946,"tf":0.015873015873015872}}},"(":{"0":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"docs":{}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6403354":{"ref":6403354,"tf":0.016260162601626018},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414107":{"ref":6414107,"tf":1.1253968253968254},"6414530":{"ref":6414530,"tf":0.005}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208},"6414614":{"ref":6414614,"tf":0.024691358024691357},"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413889":{"ref":6413889,"tf":0.031746031746031744},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414093":{"ref":6414093,"tf":0.014705882352941176}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"4272538":{"ref":4272538,"tf":0.013636363636363636}}}}}}}}},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"l":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6414755":{"ref":6414755,"tf":1.0204081632653061}}}}}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"p":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"i":{"docs":{},"c":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}},"m":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.09302325581395349}},".":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}}}}}}}}}}}}}}},"{":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}}}}}}}}}}}}}}}}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"_":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}},"b":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6403728":{"ref":6403728,"tf":1.4516483516483514},"6410224":{"ref":6410224,"tf":2.019607843137255},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6414530":{"ref":6414530,"tf":0.005}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}},"k":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6405964":{"ref":6405964,"tf":0.07407407407407407},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6414152":{"ref":6414152,"tf":0.0078125}}}},"g":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}},"l":{"docs":{},"k":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}},"l":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"s":{"docs":{},"k":{"docs":{"6404725":{"ref":6404725,"tf":2.5273972602739727},"6411778":{"ref":6411778,"tf":0.06451612903225806}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"6414782":{"ref":6414782,"tf":21.666666666666668}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}}}}}}},"o":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412863":{"ref":6412863,"tf":1.4478021978021975},"6413183":{"ref":6413183,"tf":0.02142857142857143},"6413240":{"ref":6413240,"tf":2.0093457943925235}}}},"r":{"docs":{"6413265":{"ref":6413265,"tf":1.4285714285714284}},"i":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6401696":{"ref":6401696,"tf":0.037037037037037035},"6401946":{"ref":6401946,"tf":0.047619047619047616},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412428":{"ref":6412428,"tf":0.023255813953488372},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412589":{"ref":6412589,"tf":0.0379746835443038},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6412632":{"ref":6412632,"tf":0.023255813953488372},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414152":{"ref":6414152,"tf":0.03125},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.038461538461538464},"6414123":{"ref":6414123,"tf":1.4346689895470381}}}}}},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":1.0044843049327354}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}},"d":{"docs":{},"e":{"docs":{"6413549":{"ref":6413549,"tf":0.07017543859649122}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.024390243902439025}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412151":{"ref":6412151,"tf":0.046511627906976744},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413720":{"ref":6413720,"tf":0.022222222222222223},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414105":{"ref":6414105,"tf":0.0380952380952381},"6414152":{"ref":6414152,"tf":0.0078125},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"t":{"docs":{},"n":{"docs":{},")":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}},"e":{"docs":{"6411194":{"ref":6411194,"tf":2}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"1":{"docs":{},"@":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},",":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"2":{"docs":{},"@":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"docs":{"3827055":{"ref":3827055,"tf":18.004901960784313},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6364675":{"ref":6364675,"tf":0.016891891891891893},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413778":{"ref":6413778,"tf":0.009345794392523364}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413732":{"ref":6413732,"tf":0.04918032786885246},"6414240":{"ref":6414240,"tf":0.037037037037037035}}},"y":{"docs":{},"(":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"6413732":{"ref":6413732,"tf":0.03278688524590164}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}}}},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}},"d":{"docs":{},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"6395651":{"ref":6395651,"tf":0.04},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414530":{"ref":6414530,"tf":0.005}}}},"x":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0875},"5351143":{"ref":5351143,"tf":0.04878048780487805},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413036":{"ref":6413036,"tf":0.0625},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413881":{"ref":6413881,"tf":1.6888888888888887},"6414473":{"ref":6414473,"tf":21.3},"6414530":{"ref":6414530,"tf":0.01}},"/":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},";":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"=":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"6414473":{"ref":6414473,"tf":20}}}}}},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}},"u":{"docs":{},"r":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"6174688":{"ref":6174688,"tf":0.022222222222222223},"6413018":{"ref":6413018,"tf":1.25}},")":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"2":{"docs":{},"d":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}},"docs":{}}}}}}},"c":{"docs":{},"h":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"6411282":{"ref":6411282,"tf":2.037037037037037}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"e":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"5351143":{"ref":5351143,"tf":0.04878048780487805},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414438":{"ref":6414438,"tf":15.296583850931675},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"1":{"docs":{"6413523":{"ref":6413523,"tf":0.02127659574468085}}},"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6413523":{"ref":6413523,"tf":0.028368794326241134}}}}},"\"":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}},"'":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}},"t":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863},"6414530":{"ref":6414530,"tf":0.015}},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}}}}},"c":{"docs":{},"k":{"docs":{"6414438":{"ref":6414438,"tf":0.016304347826086956}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}},"l":{"docs":{},"e":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}},"f":{"docs":{},"f":{"docs":{"6413744":{"ref":6413744,"tf":0.015384615384615385}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6294393":{"ref":6294393,"tf":0.013986013986013986},"6411574":{"ref":6411574,"tf":1.4285714285714284}}}}},"m":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412993":{"ref":6412993,"tf":0.005934718100890208}},"=":{"docs":{},"$":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"i":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"h":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"h":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"{":{"docs":{},"{":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"+":{"docs":{},"=":{"1":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}},"docs":{}}}}}}}}}},"[":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"2":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"3":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}},"docs":{}}},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.016666666666666666},"6413265":{"ref":6413265,"tf":1.4285714285714284}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}},"v":{"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}},"docs":{},"a":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.013513513513513514}},"u":{"docs":{"78932":{"ref":78932,"tf":1.25},"318630":{"ref":318630,"tf":0.02},"3047391":{"ref":3047391,"tf":0.0375},"4529460":{"ref":4529460,"tf":0.009478672985781991},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6410224":{"ref":6410224,"tf":2.019607843137255},"6411636":{"ref":6411636,"tf":0.06896551724137931},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413240":{"ref":6413240,"tf":0.037383177570093455},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413881":{"ref":6413881,"tf":1.6666666666666665},"6414123":{"ref":6414123,"tf":0.024390243902439025},"6414253":{"ref":6414253,"tf":2.0217391304347827},"6414438":{"ref":6414438,"tf":0.02717391304347826},"6414530":{"ref":6414530,"tf":0.015},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"e":{"docs":{},"=":{"docs":{},"\"":{"1":{"0":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"u":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}},"1":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}},"2":{"3":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"1":{"2":{"3":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}},"4":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}},"7":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}}},"docs":{}},"4":{"5":{"6":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"4":{"5":{"6":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414827":{"ref":6414827,"tf":0.03125}}}}}}}}}}}}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}},"g":{"docs":{},"o":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"o":{"docs":{},"g":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"e":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}},"a":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"d":{"docs":{},"s":{"docs":{},"l":{"2":{"docs":{},"+":{"docs":{},"/":{"docs":{},"c":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"b":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"c":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"e":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"f":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"f":{"1":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"z":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}},"u":{"docs":{},"s":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},"v":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}},"'":{"docs":{},"+":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}},"“":{"docs":{},"v":{"docs":{"6414253":{"ref":6414253,"tf":0.13043478260869565}}}},"'":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"i":{"docs":{},"d":{"docs":{},"+":{"docs":{},"\"":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"+":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"[":{"0":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"1":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}},"docs":{},"j":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}},"=":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}},"[":{"1":{"0":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"r":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"1":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"l":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"2":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"d":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"3":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}},"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}},"2":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"l":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"3":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"l":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"4":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"5":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}},"6":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"\\":{"docs":{},"r":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}},"7":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"\\":{"docs":{},"n":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}},"8":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"w":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"9":{"docs":{},"]":{"docs":{},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}},"docs":{}}}},"i":{"docs":{},"d":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6411169":{"ref":6411169,"tf":0.06521739130434782},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413240":{"ref":6413240,"tf":2.0186915887850465},"6413444":{"ref":6413444,"tf":0.012048192771084338}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"318630":{"ref":318630,"tf":0.04},"4272538":{"ref":4272538,"tf":0.04090909090909091},"4529460":{"ref":4529460,"tf":0.037914691943127965},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.016891891891891893},"6404725":{"ref":6404725,"tf":0.0410958904109589},"6410184":{"ref":6410184,"tf":0.027210884353741496},"6410224":{"ref":6410224,"tf":0.058823529411764705},"6411169":{"ref":6411169,"tf":0.10869565217391304},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.04583333333333333},"6412589":{"ref":6412589,"tf":0.0379746835443038},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413356":{"ref":6413356,"tf":0.03278688524590164},"6413440":{"ref":6413440,"tf":0.04},"6413541":{"ref":6413541,"tf":0.05357142857142857},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414060":{"ref":6414060,"tf":0.125},"6414093":{"ref":6414093,"tf":0.07352941176470588},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414152":{"ref":6414152,"tf":0.046875},"6414240":{"ref":6414240,"tf":0.037037037037037035},"6414530":{"ref":6414530,"tf":0.005},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413440":{"ref":6413440,"tf":21.263333333333332},"6414240":{"ref":6414240,"tf":3.3456790123456788}}}}},"o":{"docs":{},"u":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"%":{"2":{"0":{"docs":{},"d":{"docs":{},"=":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"z":{"docs":{},"=":{"docs":{},"d":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"'":{"docs":{},"+":{"docs":{},"'":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},",":{"docs":{},"b":{"docs":{},"=":{"docs":{},"d":{"docs":{},".":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},",":{"docs":{},"l":{"docs":{},"=":{"docs":{},"d":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"=":{"docs":{},"\"":{"1":{"docs":{},".":{"0":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}},"docs":{}}},"docs":{}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}},"u":{"docs":{"6411778":{"ref":6411778,"tf":0.7692307692307693}}}},"i":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"3802824":{"ref":3802824,"tf":0.014925373134328358},"3827055":{"ref":3827055,"tf":0.014705882352941176},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"f":{"docs":{},"i":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}},"i":{"docs":{},"a":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4460205":{"ref":4460205,"tf":2.076923076923077},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6413444":{"ref":6413444,"tf":0.012048192771084338}}},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693},"6414473":{"ref":6414473,"tf":0.05}}}}},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"3827055":{"ref":3827055,"tf":17.931372549019606},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6413416":{"ref":6413416,"tf":20.03030303030303}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}},"(":{"0":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}},"docs":{}}}}},"s":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}},"w":{"3":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}},"c":{"docs":{},"/":{"docs":{},"/":{"docs":{},"d":{"docs":{},"t":{"docs":{},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"docs":{},"a":{"docs":{},"y":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4460205":{"ref":4460205,"tf":0.07692307692307693},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6398787":{"ref":6398787,"tf":0.08333333333333333},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413036":{"ref":6413036,"tf":0.0625},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413440":{"ref":6413440,"tf":1.2766666666666666},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414827":{"ref":6414827,"tf":0.03125}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}},"n":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6403728":{"ref":6403728,"tf":0.023076923076923078},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6412753":{"ref":6412753,"tf":0.046511627906976744},"6412863":{"ref":6412863,"tf":0.038461538461538464},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414123":{"ref":6414123,"tf":0.018292682926829267},"6414438":{"ref":6414438,"tf":0.010869565217391304},"6414473":{"ref":6414473,"tf":0.05},"6414530":{"ref":6414530,"tf":0.005},"6414613":{"ref":6414613,"tf":0.01818181818181818},"6414755":{"ref":6414755,"tf":0.04081632653061224},"6414782":{"ref":6414782,"tf":0.022727272727272728}}},"'":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"6413720":{"ref":6413720,"tf":1.6814814814814814}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"'":{"docs":{"6412607":{"ref":6412607,"tf":2.0357142857142856},"6413265":{"ref":6413265,"tf":1.4285714285714284},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414827":{"ref":6414827,"tf":0.03125}}},"e":{"docs":{},"v":{"docs":{"6414530":{"ref":6414530,"tf":0.005},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}}},"y":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}},"i":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412566":{"ref":6412566,"tf":2.5},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6412607":{"ref":6412607,"tf":2.0357142857142856},"6413265":{"ref":6413265,"tf":1.4285714285714284},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414827":{"ref":6414827,"tf":2.5}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413778":{"ref":6413778,"tf":0.009345794392523364}},"\"":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}},"a":{"docs":{},"p":{"docs":{"6414473":{"ref":6414473,"tf":1.25}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"318630":{"ref":318630,"tf":0.02},"3827055":{"ref":3827055,"tf":0.014705882352941176},"4185821":{"ref":4185821,"tf":0.0125},"4272538":{"ref":4272538,"tf":0.01818181818181818},"4508230":{"ref":4508230,"tf":0.03225806451612903},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6364675":{"ref":6364675,"tf":0.013513513513513514},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6410184":{"ref":6410184,"tf":3.346938775510204},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411636":{"ref":6411636,"tf":0.034482758620689655},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412151":{"ref":6412151,"tf":2},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412632":{"ref":6412632,"tf":0.029069767441860465},"6412913":{"ref":6412913,"tf":0.025974025974025976},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.031746031746031744},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413744":{"ref":6413744,"tf":0.03076923076923077},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414558":{"ref":6414558,"tf":0.0273972602739726},"6414578":{"ref":6414578,"tf":0.08823529411764706},"6414613":{"ref":6414613,"tf":0.05454545454545454}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413732":{"ref":6413732,"tf":0.01639344262295082}}},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"t":{"docs":{},"h":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411964":{"ref":6411964,"tf":0.01639344262295082}}}},"l":{"docs":{},"d":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413732":{"ref":6413732,"tf":2}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}},"u":{"docs":{},"d":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"e":{"docs":{},"b":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4508230":{"ref":4508230,"tf":0.03225806451612903},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6396782":{"ref":6396782,"tf":0.03125},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6411282":{"ref":6411282,"tf":2},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6411964":{"ref":6411964,"tf":25},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412428":{"ref":6412428,"tf":16.666666666666664},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413732":{"ref":6413732,"tf":2},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414152":{"ref":6414152,"tf":16.666666666666664}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"4460205":{"ref":4460205,"tf":0.07692307692307693},"6413244":{"ref":6413244,"tf":1.4424603174603172},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414152":{"ref":6414152,"tf":0.0078125},"6414578":{"ref":6414578,"tf":0.029411764705882353}},"e":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414376":{"ref":6414376,"tf":0.02702702702702703}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"'":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"6412428":{"ref":6412428,"tf":0.023255813953488372}}}}}}}},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6413944":{"ref":6413944,"tf":2.0153846153846153}},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}},"g":{"docs":{},"l":{"docs":{"6395651":{"ref":6395651,"tf":20.80923076923077},"6413744":{"ref":6413744,"tf":25.015384615384615}}}},"k":{"docs":{},"i":{"docs":{},"t":{"docs":{"318630":{"ref":318630,"tf":16.686666666666664},"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"3802824":{"ref":3802824,"tf":1.2798507462686568},"4460205":{"ref":4460205,"tf":27}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4460205":{"ref":4460205,"tf":0.07692307692307693}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6413908":{"ref":6413908,"tf":22.5}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}},"'":{"docs":{},"l":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}},"i":{"docs":{},"r":{"docs":{},"d":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6413512":{"ref":6413512,"tf":3.333333333333333}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"n":{"docs":{},"t":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}},"l":{"docs":{},"l":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"4272538":{"ref":4272538,"tf":0.004545454545454545},"5306132":{"ref":5306132,"tf":0.008968609865470852},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414613":{"ref":6414613,"tf":1.4285714285714284}}}}},"i":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":1.1111111111111112},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"318630":{"ref":318630,"tf":1.7066666666666666},"4529460":{"ref":4529460,"tf":2.028436018957346},"6403728":{"ref":6403728,"tf":1.5054945054945053},"6412119":{"ref":6412119,"tf":0.01764705882352941},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6414530":{"ref":6414530,"tf":0.005}},"=":{"docs":{},"\"":{"1":{"1":{"0":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}},"4":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}},"5":{"docs":{"6294393":{"ref":6294393,"tf":0.04895104895104895}}},"docs":{}},"docs":{}},"4":{"5":{"0":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"docs":{}},"docs":{}},"docs":{}}},":":{"2":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},":":{"2":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},";":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},":":{"docs":{},"#":{"docs":{},"e":{"docs":{},"e":{"docs":{},"e":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}},"e":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"3802824":{"ref":3802824,"tf":0.029850746268656716},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413732":{"ref":6413732,"tf":0.03278688524590164},"6414240":{"ref":6414240,"tf":0.024691358024691357}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"x":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}}}}}}},"f":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}},"w":{"docs":{},"w":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6414614":{"ref":6414614,"tf":0.043209876543209874}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"m":{"docs":{},"i":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}}}}}}}},"v":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"4529460":{"ref":4529460,"tf":0.009478672985781991},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6409972":{"ref":6409972,"tf":0.020833333333333332},"6411282":{"ref":6411282,"tf":0.037037037037037035},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413778":{"ref":6413778,"tf":0.018691588785046728},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"m":{"docs":{},"y":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.018691588785046728}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}}},"v":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412334":{"ref":6412334,"tf":0.020833333333333332},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412997":{"ref":6412997,"tf":4.0476190476190474},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414614":{"ref":6414614,"tf":20}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"y":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"i":{"docs":{},"m":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"l":{"docs":{},"i":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"6413327":{"ref":6413327,"tf":2}}}}}}}},"t":{"docs":{},"i":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4460205":{"ref":4460205,"tf":0.07692307692307693},"5306132":{"ref":5306132,"tf":0.02242152466367713},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6414152":{"ref":6414152,"tf":0.015625}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},":":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"1":{"1":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"2":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"docs":{}},"docs":{}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}}}}},"e":{"docs":{},"r":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"\\":{"docs":{},"'":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}},"a":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"6411282":{"ref":6411282,"tf":0.07407407407407407}}}}}}},"o":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413744":{"ref":6413744,"tf":0.015384615384615385}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"t":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414105":{"ref":6414105,"tf":0.009523809523809525}}},"e":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413523":{"ref":6413523,"tf":0.0070921985815602835}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413036":{"ref":6413036,"tf":0.0625}}}}}}},"n":{"docs":{},"e":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},"e":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}}},"[":{"0":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},"]":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}},"docs":{}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}}}}},"docs":{}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}}}},"w":{"docs":{},"n":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082},"6413444":{"ref":6413444,"tf":0.012048192771084338},"6413881":{"ref":6413881,"tf":0.022222222222222223}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414152":{"ref":6414152,"tf":0.0078125},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414558":{"ref":6414558,"tf":1.7077625570776254},"6414782":{"ref":6414782,"tf":0.06818181818181818}}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412607":{"ref":6412607,"tf":0.03571428571428571},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414152":{"ref":6414152,"tf":0.015625}}}},"t":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6413732":{"ref":6413732,"tf":0.01639344262295082}},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}}}}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333}},"(":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"f":{"docs":{},"b":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"_":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"s":{"docs":{},"g":{"docs":{"6413512":{"ref":6413512,"tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"g":{"1":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941}}}}}}}}},"docs":{}}}}}}}}}},"s":{"docs":{},"b":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"6414060":{"ref":6414060,"tf":0.041666666666666664}}}},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6411169":{"ref":6411169,"tf":0.043478260869565216}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"s":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"y":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}},"i":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}},"m":{"docs":{"78932":{"ref":78932,"tf":33.33333333333333}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"\"":{"docs":{},">":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}}}}}}}},"j":{"docs":{},"o":{"docs":{"6396782":{"ref":6396782,"tf":21.729166666666668},"6413327":{"ref":6413327,"tf":22.025}},".":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6413327":{"ref":6413327,"tf":20}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}},"u":{"docs":{},"b":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6409972":{"ref":6409972,"tf":1.4494047619047616},"6411778":{"ref":6411778,"tf":0.7853598014888338},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413778":{"ref":6413778,"tf":1.25},"6414152":{"ref":6414152,"tf":0.0078125}},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"6411778":{"ref":6411778,"tf":0.016129032258064516}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.004484304932735426}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6414613":{"ref":6414613,"tf":25.01818181818182}},"e":{"docs":{},"'":{"docs":{"6414613":{"ref":6414613,"tf":1.4285714285714284}}}}}}}}},"t":{"docs":{},"a":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"4047072":{"ref":4047072,"tf":0.023255813953488372},"4185821":{"ref":4185821,"tf":0.025},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5351143":{"ref":5351143,"tf":0.0975609756097561},"6174688":{"ref":6174688,"tf":0.05555555555555555},"6403354":{"ref":6403354,"tf":0.032520325203252036},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413744":{"ref":6413744,"tf":1.4747252747252746},"6413778":{"ref":6413778,"tf":1.25},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414530":{"ref":6414530,"tf":0.02},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}},"e":{"docs":{},":":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"6414613":{"ref":6414613,"tf":1.4285714285714284}}}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"6410224":{"ref":6410224,"tf":2.019607843137255}}}}}},"e":{"docs":{"5549729":{"ref":5549729,"tf":0.07142857142857142},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}}}}}}}}}}}}},"y":{"docs":{"6414438":{"ref":6414438,"tf":0.010869565217391304}}},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}},"e":{"docs":{},"f":{"docs":{"6364675":{"ref":6364675,"tf":0.013513513513513514}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412428":{"ref":6412428,"tf":0.023255813953488372},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414152":{"ref":6414152,"tf":0.015625},"6414438":{"ref":6414438,"tf":0.010869565217391304}}}}}},"i":{"docs":{},"n":{"docs":{"6398787":{"ref":6398787,"tf":0.08333333333333333},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412997":{"ref":6412997,"tf":0.015873015873015872}},"i":{"docs":{},"t":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412566":{"ref":6412566,"tf":1.25}}}}}},"c":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":1.1486111111111112},"4460205":{"ref":4460205,"tf":2},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413036":{"ref":6413036,"tf":0.0625}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"6413265":{"ref":6413265,"tf":0.018867924528301886}}}}}},"v":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411574":{"ref":6411574,"tf":2.883458646616541},"6411964":{"ref":6411964,"tf":25.0327868852459}}}}}},"i":{"docs":{},"c":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6413951":{"ref":6413951,"tf":0.034482758620689655}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414253":{"ref":6414253,"tf":2.0217391304347827}}}}}}},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}},"k":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.011627906976744186}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412863":{"ref":6412863,"tf":0.038461538461538464},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413416":{"ref":6413416,"tf":1.6969696969696968}},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.0125}}},".":{"docs":{},"j":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}},"a":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412334":{"ref":6412334,"tf":0.004166666666666667}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6406161":{"ref":6406161,"tf":20},"6413744":{"ref":6413744,"tf":0.015384615384615385}},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"6413440":{"ref":6413440,"tf":0.02666666666666667}}}}}},"d":{"docs":{},"u":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"e":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412428":{"ref":6412428,"tf":0.011627906976744186}}},"d":{"docs":{},"e":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}},"m":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":2.025},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"6414253":{"ref":6414253,"tf":2.0217391304347827}}}}}},":":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":22.025}},"e":{"docs":{},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}},"\"":{"docs":{},"+":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.016666666666666666},"6414473":{"ref":6414473,"tf":1.25}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}},":":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":0.020833333333333332}},"e":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}}}},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"'":{"docs":{},"(":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{},"%":{"2":{"0":{"docs":{},"'":{"docs":{},"+":{"docs":{},"d":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{"6414614":{"ref":6414614,"tf":1.4285714285714284}},"e":{"docs":{},"r":{"docs":{"6414782":{"ref":6414782,"tf":0.022727272727272728}}}},"l":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"c":{"docs":{},"h":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.005},"6414613":{"ref":6414613,"tf":0.03636363636363636}},"(":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":1.25},"318630":{"ref":318630,"tf":0.02},"3047391":{"ref":3047391,"tf":0.0125},"4185821":{"ref":4185821,"tf":1.1111111111111112},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412863":{"ref":6412863,"tf":1.4478021978021975},"6413416":{"ref":6413416,"tf":1.6969696969696968},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"6412151":{"ref":6412151,"tf":0.023255813953488372}}}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{"6395651":{"ref":6395651,"tf":0.04}}}}}},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"#":{"docs":{},"r":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}},".":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"2":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}},"3":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"+":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}},"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6404725":{"ref":6404725,"tf":2.541095890410959},"6411169":{"ref":6411169,"tf":1.4285714285714284},"6412259":{"ref":6412259,"tf":2.0384615384615383},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413327":{"ref":6413327,"tf":0.025},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414614":{"ref":6414614,"tf":0.006172839506172839}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}},":":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414755":{"ref":6414755,"tf":0.02040816326530612}},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.03587443946188341},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412334":{"ref":6412334,"tf":0.020833333333333332},"6412863":{"ref":6412863,"tf":41.4478021978022},"6414123":{"ref":6414123,"tf":34.77409988385598},"6414613":{"ref":6414613,"tf":0.03636363636363636}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334},"6414613":{"ref":6414613,"tf":0.03636363636363636}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}},"t":{"docs":{},"c":{"docs":{"6411637":{"ref":6411637,"tf":0.017857142857142856},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414438":{"ref":6414438,"tf":0.010869565217391304},"6414530":{"ref":6414530,"tf":0.01},"6414578":{"ref":6414578,"tf":0.029411764705882353}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5549729":{"ref":5549729,"tf":0.07142857142857142},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6414782":{"ref":6414782,"tf":0.022727272727272728}}}}},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}}},"x":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413356":{"ref":6413356,"tf":3.333333333333333},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}},"c":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}},"l":{"docs":{},"i":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412607":{"ref":6412607,"tf":0.03571428571428571}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413951":{"ref":6413951,"tf":0.011494252873563218}}}},"r":{"docs":{},"i":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374},"6413018":{"ref":6413018,"tf":21.29},"6414558":{"ref":6414558,"tf":11.11111111111111},"6414578":{"ref":6414578,"tf":28.57142857142857}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"6414123":{"ref":6414123,"tf":1.4285714285714284}}}}}}}},"a":{"docs":{},"n":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}},"i":{"docs":{},"n":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6397574":{"ref":6397574,"tf":27.022727272727273},"6413416":{"ref":6413416,"tf":0.030303030303030304}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"4508230":{"ref":4508230,"tf":0.03225806451612903},"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}},"t":{"docs":{"6406161":{"ref":6406161,"tf":20}},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"6411964":{"ref":6411964,"tf":2.5327868852459017},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414376":{"ref":6414376,"tf":2}}}},"n":{"docs":{},"s":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6404725":{"ref":6404725,"tf":25},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6413778":{"ref":6413778,"tf":0.009345794392523364}}},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}},"r":{"docs":{},"a":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413018":{"ref":6413018,"tf":1.2633333333333334}},"c":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"t":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664}}}}}}}},"j":{"docs":{"6406161":{"ref":6406161,"tf":0.041666666666666664},"6409972":{"ref":6409972,"tf":20}},"s":{"4":{"docs":{"6409972":{"ref":6409972,"tf":21.44940476190476}}},"docs":{}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"s":{"docs":{},"s":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"=":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"x":{"docs":{},"s":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.004739336492890996},"5306132":{"ref":5306132,"tf":0.004484304932735426},"6294393":{"ref":6294393,"tf":1.6876456876456876},"6414473":{"ref":6414473,"tf":0.05}}}}}}},"m":{"docs":{},">":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}}}}},"c":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"6413018":{"ref":6413018,"tf":0.02666666666666667}}}}}}},"i":{"docs":{},"n":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6413018":{"ref":6413018,"tf":0.013333333333333334}}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"6413444":{"ref":6413444,"tf":2.5240963855421685}}}}},"b":{"docs":{},"e":{"docs":{},"d":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6406161":{"ref":6406161,"tf":25.083333333333332}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}},"d":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413881":{"ref":6413881,"tf":0.08888888888888889},"6414123":{"ref":6414123,"tf":0.012195121951219513}}}},"i":{"docs":{},"r":{"docs":{"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414152":{"ref":6414152,"tf":0.0078125}}}},"r":{"docs":{},"i":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035},"6413549":{"ref":6413549,"tf":0.017543859649122806},"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}},"d":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6411169":{"ref":6411169,"tf":1.4285714285714284},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941}}}}}}},"g":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693},"6414438":{"ref":6414438,"tf":0.005434782608695652}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{"6413018":{"ref":6413018,"tf":1.25}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413018":{"ref":6413018,"tf":1.25}},"o":{"docs":{},"r":{"docs":{"6414473":{"ref":6414473,"tf":20.05}}}}}}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}},"g":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"v":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}},"a":{"docs":{},"l":{"docs":{"6403728":{"ref":6403728,"tf":0.023076923076923078},"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}}},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"5306132":{"ref":5306132,"tf":0.004484304932735426},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6397574":{"ref":6397574,"tf":0.022727272727272728},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6406161":{"ref":6406161,"tf":0.041666666666666664},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412151":{"ref":6412151,"tf":0.011627906976744186},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6412566":{"ref":6412566,"tf":1.2616279069767442},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413036":{"ref":6413036,"tf":0.0625},"6413440":{"ref":6413440,"tf":0.013333333333333334},"6413549":{"ref":6413549,"tf":0.03508771929824561},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414105":{"ref":6414105,"tf":0.02857142857142857},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414614":{"ref":6414614,"tf":0.006172839506172839},"6414755":{"ref":6414755,"tf":0.02040816326530612},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"n":{"docs":{"6413549":{"ref":6413549,"tf":0.017543859649122806}}}}}},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6414152":{"ref":6414152,"tf":0.0078125},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"y":{"docs":{"3047391":{"ref":3047391,"tf":0.025},"5306132":{"ref":5306132,"tf":0.04035874439461883},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413523":{"ref":6413523,"tf":0.02127659574468085}},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":1.0224215246636772}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":1.0224215246636772}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}},"p":{"docs":{},"t":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}},"a":{"docs":{"6412753":{"ref":6412753,"tf":0.023255813953488372}}}}}}},"l":{"docs":{},"i":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"v":{"docs":{},"e":{"docs":{"6414473":{"ref":6414473,"tf":1.25},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}},"n":{"docs":{},"k":{"docs":{"3802824":{"ref":3802824,"tf":0.04477611940298507},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414152":{"ref":6414152,"tf":1.6666666666666665},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414782":{"ref":6414782,"tf":0.045454545454545456}},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6414782":{"ref":6414782,"tf":1.6666666666666665}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{"6413951":{"ref":6413951,"tf":0.022988505747126436}},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815}}}}}},"e":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6413018":{"ref":6413018,"tf":0.013333333333333334},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414578":{"ref":6414578,"tf":0.029411764705882353}}}},">":{"docs":{},"<":{"docs":{},"a":{"docs":{"5306132":{"ref":5306132,"tf":0.013452914798206279}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},">":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}},"r":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}}},"i":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"n":{"docs":{},"c":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"k":{"docs":{},"s":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}},"k":{"docs":{},"e":{"docs":{},";":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6413444":{"ref":6413444,"tf":0.012048192771084338}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}}},"s":{"docs":{},"t":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412151":{"ref":6412151,"tf":0.03488372093023256},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6413183":{"ref":6413183,"tf":1.4642857142857142},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414613":{"ref":6414613,"tf":1.4831168831168828}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"\"":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}}}}}}}},"b":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":33.33333333333333},"6414438":{"ref":6414438,"tf":1}}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}},"g":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"4529460":{"ref":4529460,"tf":27.04739336492891}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}},"f":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}},".":{"docs":{},"'":{"docs":{},"+":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.05232558139534884},"6413327":{"ref":6413327,"tf":0.025},"6414093":{"ref":6414093,"tf":0.029411764705882353},"6414614":{"ref":6414614,"tf":1.4347442680776012}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}},"l":{"docs":{"5351143":{"ref":5351143,"tf":1.4773519163763065},"5549729":{"ref":5549729,"tf":0.07142857142857142}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"5351143":{"ref":5351143,"tf":20.024390243902438}}}}}}}}}},"k":{"docs":{"6411282":{"ref":6411282,"tf":2.037037037037037}}}},"g":{"docs":{"6412428":{"ref":6412428,"tf":0.023255813953488372},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"i":{"docs":{},"c":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414755":{"ref":6414755,"tf":1.0408163265306123}}},"n":{"docs":{"6412428":{"ref":6412428,"tf":18.701550387596896},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"1":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"2":{"docs":{},"n":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"docs":{}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"k":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"3802824":{"ref":3802824,"tf":0.014925373134328358},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413744":{"ref":6413744,"tf":1.4439560439560437},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414438":{"ref":6414438,"tf":0.005434782608695652},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"u":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6412566":{"ref":6412566,"tf":0.005813953488372093}},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"_":{"docs":{},"m":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},",":{"docs":{},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}},"v":{"docs":{},"e":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"4272538":{"ref":4272538,"tf":0.004545454545454545},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"a":{"docs":{},"d":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413183":{"ref":6413183,"tf":1.4285714285714284},"6413541":{"ref":6413541,"tf":0.03571428571428571},"6413732":{"ref":6413732,"tf":2.0163934426229506},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6414093":{"ref":6414093,"tf":2.5441176470588234},"6414152":{"ref":6414152,"tf":0.0078125},"6414376":{"ref":6414376,"tf":0.05405405405405406},"6414558":{"ref":6414558,"tf":0.0136986301369863},"6414613":{"ref":6414613,"tf":0.03636363636363636}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"_":{"1":{"docs":{},".":{"docs":{},"j":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},"docs":{}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}},"(":{"docs":{},"d":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412997":{"ref":6412997,"tf":0.015873015873015872}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6409944":{"ref":6409944,"tf":1.4285714285714284},"6414613":{"ref":6414613,"tf":0.03636363636363636}}}},"n":{"docs":{"6413541":{"ref":6413541,"tf":0.05357142857142857}},"g":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}},"e":{"docs":{},"r":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"t":{"docs":{},"o":{"docs":{"6412632":{"ref":6412632,"tf":0.011627906976744186}}}}},"w":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413951":{"ref":6413951,"tf":0.022988505747126436}},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.01483679525222552},"6412997":{"ref":6412997,"tf":0.09523809523809523},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6413720":{"ref":6413720,"tf":0.02962962962962963},"6413951":{"ref":6413951,"tf":0.022988505747126436},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},":":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6413183":{"ref":6413183,"tf":0.02142857142857143},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414253":{"ref":6414253,"tf":0.043478260869565216}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"1":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}},"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6414530":{"ref":6414530,"tf":0.005}}}}}}}}},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414530":{"ref":6414530,"tf":0.01}}}}}},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6412993":{"ref":6412993,"tf":0.01483679525222552}}}}}}},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},":":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}},"p":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}},"b":{"docs":{},":":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.024691358024691357},"6413240":{"ref":6413240,"tf":0.037383177570093455},"6413265":{"ref":6413265,"tf":0.03773584905660377},"6413889":{"ref":6413889,"tf":0.047619047619047616},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414614":{"ref":6414614,"tf":0.037037037037037035}}}}}},"m":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.055944055944055944},"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.018518518518518517}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"'":{"docs":{},"+":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"+":{"docs":{},"'":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6411169":{"ref":6411169,"tf":0.021739130434782608}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6410224":{"ref":6410224,"tf":0.0196078431372549},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"s":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"s":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414105":{"ref":6414105,"tf":0.009523809523809525},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"6410224":{"ref":6410224,"tf":0.0196078431372549},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412993":{"ref":6412993,"tf":0.02373887240356083},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413244":{"ref":6413244,"tf":0.027777777777777776},"6413720":{"ref":6413720,"tf":0.022222222222222223},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414093":{"ref":6414093,"tf":0.014705882352941176},"6414105":{"ref":6414105,"tf":0.009523809523809525}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412997":{"ref":6412997,"tf":0.06349206349206349}}}}}},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},":":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}},"d":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6403728":{"ref":6403728,"tf":0.06153846153846154},"6413265":{"ref":6413265,"tf":0.03773584905660377},"6414530":{"ref":6414530,"tf":0.07}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6414123":{"ref":6414123,"tf":0.012195121951219513}},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"b":{"docs":{},"s":{"docs":{},"p":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414530":{"ref":6414530,"tf":0.01}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},":":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"6412632":{"ref":6412632,"tf":0.01744186046511628}}}}}}}}}}}}},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.006756756756756757},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6412632":{"ref":6412632,"tf":0.011627906976744186},"6414530":{"ref":6414530,"tf":0.01}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"h":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"$":{"docs":{},"{":{"docs":{},"$":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"}":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"{":{"docs":{},"{":{"docs":{},"/":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"}":{"docs":{},"}":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"6413265":{"ref":6413265,"tf":0.03773584905660377}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}},"e":{"1":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}},"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"8":{"2":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"i":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"o":{"docs":{},"s":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"s":{"docs":{},":":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.022727272727272728}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.05442176870748299}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.013605442176870748}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"y":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}},"h":{"2":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}},"3":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"y":{"docs":{},"a":{"docs":{},"y":{"docs":{"6412997":{"ref":6412997,"tf":0.06349206349206349}}}}}}}}}},"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"6294393":{"ref":6294393,"tf":0.055944055944055944},"6412993":{"ref":6412993,"tf":0.01483679525222552}}}},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413720":{"ref":6413720,"tf":0.007407407407407408}},"s":{"docs":{},"p":{"docs":{},":":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"78932":{"ref":78932,"tf":0.11764705882352941},"6410224":{"ref":6410224,"tf":0.0392156862745098},"6413183":{"ref":6413183,"tf":0.08571428571428572},"6413944":{"ref":6413944,"tf":0.03076923076923077},"6414253":{"ref":6414253,"tf":0.13043478260869565}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"u":{"docs":{},"l":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6412993":{"ref":6412993,"tf":0.002967359050445104}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}},"a":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}},"e":{"docs":{},"r":{"docs":{"6414755":{"ref":6414755,"tf":0.04081632653061224}}},"n":{"docs":{},"c":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}},"=":{"1":{"0":{"6":{"7":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"5306132":{"ref":5306132,"tf":1.0179372197309418}},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"6411574":{"ref":6411574,"tf":0.05263157894736842}},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"6403728":{"ref":6403728,"tf":0.015384615384615385},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6413523":{"ref":6413523,"tf":0.0070921985815602835},"6413889":{"ref":6413889,"tf":0.015873015873015872}}}},"r":{"docs":{},"g":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"e":{"docs":{},"r":{"docs":{"6412119":{"ref":6412119,"tf":2},"6413549":{"ref":6413549,"tf":0.03508771929824561}}}}}},"c":{"docs":{},"k":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}},"e":{"docs":{},"t":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}},"'":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"d":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}},"v":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353}},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"78932":{"ref":78932,"tf":0.058823529411764705}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.015384615384615385},"6412589":{"ref":6412589,"tf":2.0253164556962027},"6413440":{"ref":6413440,"tf":0.10666666666666667},"6413881":{"ref":6413881,"tf":0.022222222222222223}}}}}},"f":{"docs":{},"t":{"docs":{"4185821":{"ref":4185821,"tf":0.0125},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6411636":{"ref":6411636,"tf":0.05172413793103448},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6413183":{"ref":6413183,"tf":0.007142857142857143}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411636":{"ref":6411636,"tf":0.034482758620689655}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903},"6403354":{"ref":6403354,"tf":1.6991869918699185},"6411778":{"ref":6411778,"tf":0.008064516129032258}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421}}}}}}}},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412632":{"ref":6412632,"tf":0.011627906976744186}}}}}},"m":{"docs":{"6410224":{"ref":6410224,"tf":0.0392156862745098},"6414107":{"ref":6414107,"tf":0.014285714285714285}},"a":{"docs":{},"x":{"docs":{"6414438":{"ref":6414438,"tf":0.021739130434782608}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"=":{"docs":{},"\"":{"1":{"2":{"8":{"docs":{"6413240":{"ref":6413240,"tf":0.037383177570093455}}},"docs":{}},"docs":{}},"5":{"0":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}},"docs":{}},"docs":{}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"6413881":{"ref":6413881,"tf":1.6666666666666665},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}},"r":{"docs":{},"k":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}},"u":{"docs":{},"p":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}},"e":{"docs":{},"r":{"docs":{"6413244":{"ref":6413244,"tf":26.484126984126984}},".":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"6412119":{"ref":6412119,"tf":0.01764705882352941}}}}}},"k":{"docs":{},"e":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6403728":{"ref":6403728,"tf":0.007692307692307693},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6413036":{"ref":6413036,"tf":0.0625},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414123":{"ref":6414123,"tf":0.012195121951219513},"6414473":{"ref":6414473,"tf":0.05},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"t":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{"6414755":{"ref":6414755,"tf":34.35374149659864}},"'":{"docs":{"6414755":{"ref":6414755,"tf":0.02040816326530612}}}}}},"c":{"docs":{},"h":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}},"y":{"docs":{},"b":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},"i":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"l":{"docs":{},"i":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}},"p":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412720":{"ref":6412720,"tf":51.72549019607843},"6413244":{"ref":6413244,"tf":26.456349206349206},"6413541":{"ref":6413541,"tf":27.553571428571427},"6414093":{"ref":6414093,"tf":35.86274509803921}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414093":{"ref":6414093,"tf":0.029411764705882353}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"6414093":{"ref":6414093,"tf":0.029411764705882353}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}}}}},"(":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"6413541":{"ref":6413541,"tf":0.017857142857142856}}}}}}}}},"c":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}}}},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"4508230":{"ref":4508230,"tf":2.032258064516129},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6413549":{"ref":6413549,"tf":0.017543859649122806}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"6409944":{"ref":6409944,"tf":1.4285714285714284}}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}},"i":{"docs":{"6364675":{"ref":6364675,"tf":1.4353281853281852},"6411637":{"ref":6411637,"tf":0.017857142857142856}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"6412993":{"ref":6412993,"tf":33.33333333333333},"6413183":{"ref":6413183,"tf":1.4285714285714284}}}}}}},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6174688":{"ref":6174688,"tf":0.011111111111111112},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6411637":{"ref":6411637,"tf":0.03571428571428571},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413951":{"ref":6413951,"tf":0.022988505747126436}},"=":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413889":{"ref":6413889,"tf":0.015873015873015872}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6413240":{"ref":6413240,"tf":0.018691588785046728}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6414755":{"ref":6414755,"tf":0.02040816326530612}}}},".":{"docs":{},"r":{"docs":{},"d":{"docs":{},"f":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"6397574":{"ref":6397574,"tf":0.022727272727272728},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6413720":{"ref":6413720,"tf":1.6962962962962962}}}}}},"!":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{"6294393":{"ref":6294393,"tf":21.68065268065268},"6411194":{"ref":6411194,"tf":2.090909090909091}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411194":{"ref":6411194,"tf":0.045454545454545456}}}}}}}},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{},"m":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"6403354":{"ref":6403354,"tf":1.6747967479674795}},"p":{"docs":{},"l":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412993":{"ref":6412993,"tf":0.005934718100890208},"6413183":{"ref":6413183,"tf":1.4357142857142855},"6414107":{"ref":6414107,"tf":1.1111111111111112},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6413183":{"ref":6413183,"tf":0.02142857142857143}}}}}}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{"6403728":{"ref":6403728,"tf":0.007692307692307693},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"5306132":{"ref":5306132,"tf":0.008968609865470852},"6412632":{"ref":6412632,"tf":2.005813953488372},"6414152":{"ref":6414152,"tf":0.0078125}}}}},"e":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}},"l":{"docs":{"6409972":{"ref":6409972,"tf":1.4910714285714284},"6411778":{"ref":6411778,"tf":0.008064516129032258},"6413951":{"ref":6413951,"tf":2.0114942528735633}}},"r":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}},"u":{"docs":{},"l":{"docs":{"6401946":{"ref":6401946,"tf":2.5317460317460316}},"e":{"docs":{},"s":{"docs":{},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426},"6395651":{"ref":6395651,"tf":0.04},"6411574":{"ref":6411574,"tf":0.05263157894736842},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412993":{"ref":6412993,"tf":1.6666666666666665},"6414613":{"ref":6414613,"tf":0.01818181818181818}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6413244":{"ref":6413244,"tf":0.013888888888888888}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"o":{"docs":{},"v":{"docs":{"6412119":{"ref":6412119,"tf":0.011764705882352941},"6414123":{"ref":6414123,"tf":0.006097560975609756}}},"u":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}},"z":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{"5351143":{"ref":5351143,"tf":0.024390243902439025}}},"l":{"docs":{},"a":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}},"n":{"docs":{},"e":{"docs":{},"y":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}},"v":{"docs":{},"e":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{"5549729":{"ref":5549729,"tf":28.404761904761905}}}}}},"i":{"docs":{},"n":{"docs":{"6414438":{"ref":6414438,"tf":0.021739130434782608},"6414530":{"ref":6414530,"tf":0.005}},"o":{"docs":{},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"0":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}},"docs":{}}}}}}}}},"u":{"docs":{"6413183":{"ref":6413183,"tf":0.014285714285714285}},"t":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"6413881":{"ref":6413881,"tf":1.6666666666666665}}}}}},"d":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.01818181818181818}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}},"s":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}},"d":{"docs":{},"n":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}}},"d":{"docs":{},"l":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}},"s":{"docs":{},"g":{"docs":{"4047072":{"ref":4047072,"tf":0.023255813953488372}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}},":":{"docs":{},"i":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"0":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"1":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}},"docs":{}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}},":":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"6413183":{"ref":6413183,"tf":0.007142857142857143}}}}},"q":{"docs":{},"l":{"docs":{"6410224":{"ref":6410224,"tf":33.35294117647059}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"h":{"docs":{},"i":{"docs":{},"d":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"6413523":{"ref":6413523,"tf":0.014184397163120567}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"6410224":{"ref":6410224,"tf":0.0784313725490196}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{},"i":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{},"i":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6414107":{"ref":6414107,"tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6398787":{"ref":6398787,"tf":0.08333333333333333},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6410184":{"ref":6410184,"tf":0.006802721088435374},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6411778":{"ref":6411778,"tf":0.024193548387096774},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412632":{"ref":6412632,"tf":0.005813953488372093},"6412863":{"ref":6412863,"tf":0.019230769230769232},"6412997":{"ref":6412997,"tf":0.015873015873015872},"6413240":{"ref":6413240,"tf":0.018691588785046728},"6413265":{"ref":6413265,"tf":0.018867924528301886},"6413512":{"ref":6413512,"tf":0.030303030303030304},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6414107":{"ref":6414107,"tf":0.014285714285714285},"6414558":{"ref":6414558,"tf":0.0136986301369863}},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"=":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"b":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"6414614":{"ref":6414614,"tf":0.006172839506172839}}}}}}}}}}}}}}}},"c":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412428":{"ref":6412428,"tf":0.011627906976744186},"6414123":{"ref":6414123,"tf":0.006097560975609756},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"6413732":{"ref":6413732,"tf":0.01639344262295082},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414240":{"ref":6414240,"tf":0.012345679012345678}},"=":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},")":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\\":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\\":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},"'":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}},"e":{"docs":{},":":{"docs":{},"(":{"docs":{},"(":{"docs":{},"e":{"docs":{},"l":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}},"e":{"docs":{},"l":{"docs":{"6412151":{"ref":6412151,"tf":0.011627906976744186}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"6414123":{"ref":6414123,"tf":0.006097560975609756}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"=":{"docs":{},"'":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"\"":{"docs":{},"/":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"a":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{"6412119":{"ref":6412119,"tf":2.011764705882353},"6414123":{"ref":6414123,"tf":0.006097560975609756}},"e":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"=":{"docs":{},"'":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}}},"e":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413944":{"ref":6413944,"tf":0.015384615384615385}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413720":{"ref":6413720,"tf":0.007407407407407408}}}}},"=":{"1":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}},"docs":{}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"u":{"docs":{},"p":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"u":{"docs":{},"p":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"0":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413240":{"ref":6413240,"tf":0.009345794392523364}}}}}}}}},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}},"t":{"docs":{},"o":{"docs":{"6411636":{"ref":6411636,"tf":0.017241379310344827}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"3802824":{"ref":3802824,"tf":1.294776119402985},"4529460":{"ref":4529460,"tf":0.009478672985781991},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6396782":{"ref":6396782,"tf":0.03125},"6411194":{"ref":6411194,"tf":0.045454545454545456},"6413036":{"ref":6413036,"tf":0.0625},"6413416":{"ref":6413416,"tf":0.030303030303030304}}},"r":{"docs":{},"a":{"docs":{"318630":{"ref":318630,"tf":0.02},"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"78932":{"ref":78932,"tf":0.029411764705882353},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413944":{"ref":6413944,"tf":0.015384615384615385},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414613":{"ref":6414613,"tf":1.4285714285714284}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"318630":{"ref":318630,"tf":0.02},"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"s":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"6413440":{"ref":6413440,"tf":0.013333333333333334}},"i":{"docs":{},"t":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.024390243902439025},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6412259":{"ref":6412259,"tf":2.0384615384615383},"6412589":{"ref":6412589,"tf":2},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413951":{"ref":6413951,"tf":2.0114942528735633},"6414107":{"ref":6414107,"tf":2.2365079365079366},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414755":{"ref":6414755,"tf":0.02040816326530612}},"]":{"docs":{},",":{"docs":{},"[":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"6403354":{"ref":6403354,"tf":0.016260162601626018}}}}}}}}}}},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}}}},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}}}}},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{"6412259":{"ref":6412259,"tf":0.038461538461538464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"4185821":{"ref":4185821,"tf":0.0125}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{"6406161":{"ref":6406161,"tf":20}}}}}}},"t":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6403728":{"ref":6403728,"tf":0.007692307692307693}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.022727272727272728}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"(":{"docs":{},"s":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6413244":{"ref":6413244,"tf":1.4424603174603172}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"3047391":{"ref":3047391,"tf":0.0125},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}}}},"g":{"docs":{},".":{"docs":{},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"6364675":{"ref":6364675,"tf":0.0033783783783783786}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411637":{"ref":6411637,"tf":0.017857142857142856},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412566":{"ref":6412566,"tf":0.005813953488372093},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412913":{"ref":6412913,"tf":0.012987012987012988},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413889":{"ref":6413889,"tf":0.015873015873015872},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414376":{"ref":6414376,"tf":0.05405405405405406},"6414558":{"ref":6414558,"tf":0.0136986301369863}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176},"6412589":{"ref":6412589,"tf":0.0379746835443038}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"6397574":{"ref":6397574,"tf":2.022727272727273},"6401946":{"ref":6401946,"tf":0.015873015873015872},"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6412863":{"ref":6412863,"tf":0.019230769230769232}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"6414558":{"ref":6414558,"tf":0.0136986301369863}}}},"a":{"docs":{},"s":{"docs":{"6294393":{"ref":6294393,"tf":1.6666666666666665}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"814910":{"ref":814910,"tf":0.041666666666666664},"6294393":{"ref":6294393,"tf":0.006993006993006993},"6411637":{"ref":6411637,"tf":0.05357142857142857},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412334":{"ref":6412334,"tf":2.0166666666666666}},"a":{"docs":{},"l":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}},"=":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"6413327":{"ref":6413327,"tf":0.025}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358}}}}}}}},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"6411282":{"ref":6411282,"tf":0.037037037037037035}}}}}}}},"l":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"6414105":{"ref":6414105,"tf":0.01904761904761905}}},"k":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"3802824":{"ref":3802824,"tf":1.2649253731343284},"4529460":{"ref":4529460,"tf":0.004739336492890996},"6364675":{"ref":6364675,"tf":0.006756756756756757},"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413240":{"ref":6413240,"tf":0.009345794392523364},"6413356":{"ref":6413356,"tf":0.01639344262295082},"6413881":{"ref":6413881,"tf":0.022222222222222223},"6414152":{"ref":6414152,"tf":0.0078125},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414613":{"ref":6414613,"tf":0.01818181818181818}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"6296451":{"ref":6296451,"tf":23.37037037037037}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"6404725":{"ref":6404725,"tf":2.541095890410959},"6413951":{"ref":6413951,"tf":2.0229885057471266}}}},"t":{"docs":{},"s":{"docs":{},"k":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},",":{"docs":{},"i":{"docs":{},"d":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}}}}}}}}}}}}}},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6411964":{"ref":6411964,"tf":0.01639344262295082}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}},"s":{"docs":{"78932":{"ref":78932,"tf":1.25},"814910":{"ref":814910,"tf":0.041666666666666664},"3047391":{"ref":3047391,"tf":2},"3827055":{"ref":3827055,"tf":0.014705882352941176},"5306132":{"ref":5306132,"tf":0.013452914798206279},"5351143":{"ref":5351143,"tf":1.4529616724738674},"5549729":{"ref":5549729,"tf":0.07142857142857142},"6174688":{"ref":6174688,"tf":0.022222222222222223},"6364675":{"ref":6364675,"tf":0.0033783783783783786},"6395651":{"ref":6395651,"tf":1.6184615384615386},"6396782":{"ref":6396782,"tf":1.7604166666666665},"6397574":{"ref":6397574,"tf":0.06818181818181818},"6403354":{"ref":6403354,"tf":0.008130081300813009},"6403728":{"ref":6403728,"tf":1.4516483516483514},"6404725":{"ref":6404725,"tf":0.0273972602739726},"6405964":{"ref":6405964,"tf":0.037037037037037035},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411636":{"ref":6411636,"tf":0.017241379310344827},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6411964":{"ref":6411964,"tf":0.01639344262295082},"6412119":{"ref":6412119,"tf":0.011764705882352941},"6412334":{"ref":6412334,"tf":0.008333333333333333},"6412566":{"ref":6412566,"tf":0.023255813953488372},"6412589":{"ref":6412589,"tf":0.012658227848101266},"6412632":{"ref":6412632,"tf":0.01744186046511628},"6412720":{"ref":6412720,"tf":0.058823529411764705},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6412863":{"ref":6412863,"tf":1.4285714285714284},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413183":{"ref":6413183,"tf":0.007142857142857143},"6413244":{"ref":6413244,"tf":0.013888888888888888},"6413416":{"ref":6413416,"tf":0.030303030303030304},"6413444":{"ref":6413444,"tf":0.024096385542168676},"6413523":{"ref":6413523,"tf":0.02127659574468085},"6413541":{"ref":6413541,"tf":0.017857142857142856},"6413720":{"ref":6413720,"tf":0.007407407407407408},"6413744":{"ref":6413744,"tf":0.015384615384615385},"6413778":{"ref":6413778,"tf":0.018691588785046728},"6413889":{"ref":6413889,"tf":1.6666666666666665},"6413944":{"ref":6413944,"tf":2.0153846153846153},"6413951":{"ref":6413951,"tf":0.011494252873563218},"6414060":{"ref":6414060,"tf":2.0416666666666665},"6414152":{"ref":6414152,"tf":0.015625},"6414240":{"ref":6414240,"tf":0.012345679012345678},"6414253":{"ref":6414253,"tf":0.021739130434782608},"6414376":{"ref":6414376,"tf":0.05405405405405406},"6414438":{"ref":6414438,"tf":0.010869565217391304},"6414530":{"ref":6414530,"tf":1.6716666666666664},"6414578":{"ref":6414578,"tf":0.029411764705882353},"6414613":{"ref":6414613,"tf":1.4285714285714284}},"e":{"docs":{},"r":{"docs":{"4185821":{"ref":4185821,"tf":0.025},"4508230":{"ref":4508230,"tf":2.032258064516129},"5351143":{"ref":5351143,"tf":0.024390243902439025},"6296451":{"ref":6296451,"tf":0.012345679012345678},"6409944":{"ref":6409944,"tf":0.014492753623188406},"6411778":{"ref":6411778,"tf":0.016129032258064516},"6412428":{"ref":6412428,"tf":0.03488372093023256},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6413036":{"ref":6413036,"tf":0.0625},"6413183":{"ref":6413183,"tf":0.014285714285714285},"6413240":{"ref":6413240,"tf":0.028037383177570093},"6413523":{"ref":6413523,"tf":0.014184397163120567},"6413720":{"ref":6413720,"tf":0.014814814814814815},"6413889":{"ref":6413889,"tf":35.01587301587301},"6414105":{"ref":6414105,"tf":0.05714285714285714},"6414558":{"ref":6414558,"tf":0.0547945205479452}},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},",":{"docs":{},"o":{"docs":{},"n":{"docs":{"6296451":{"ref":6296451,"tf":0.012345679012345678}}}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}},"=":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"3047391":{"ref":3047391,"tf":0.0125}}}}}},"'":{"docs":{"6395651":{"ref":6395651,"tf":0.8092307692307693}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6294393":{"ref":6294393,"tf":0.006993006993006993}}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186},"6414123":{"ref":6414123,"tf":0.006097560975609756}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}},".":{"docs":{"5306132":{"ref":5306132,"tf":1}}},"l":{"docs":{"5306132":{"ref":5306132,"tf":0.026905829596412557},"6413881":{"ref":6413881,"tf":0.044444444444444446}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"6412993":{"ref":6412993,"tf":0.005934718100890208}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412993":{"ref":6412993,"tf":0.002967359050445104},"6413356":{"ref":6413356,"tf":0.01639344262295082}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"6401946":{"ref":6401946,"tf":0.015873015873015872},"6411169":{"ref":6411169,"tf":1.4285714285714284},"6412259":{"ref":6412259,"tf":2},"6413732":{"ref":6413732,"tf":0.01639344262295082},"6414105":{"ref":6414105,"tf":2},"6414240":{"ref":6414240,"tf":0.012345679012345678}}}}}},"o":{"docs":{"4508230":{"ref":4508230,"tf":22.032258064516128}},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{"4508230":{"ref":4508230,"tf":0.03225806451612903}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"6409944":{"ref":6409944,"tf":0.014492753623188406}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667},"6412632":{"ref":6412632,"tf":0.005813953488372093}}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}},"i":{"docs":{},"t":{"docs":{"3827055":{"ref":3827055,"tf":17.960784313725487}}},"q":{"docs":{},"u":{"docs":{"6411778":{"ref":6411778,"tf":0.008064516129032258},"6412993":{"ref":6412993,"tf":0.005934718100890208}},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"6412993":{"ref":6412993,"tf":0.002967359050445104}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"6412428":{"ref":6412428,"tf":0.011627906976744186}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"3802824":{"ref":3802824,"tf":0.014925373134328358},"4047072":{"ref":4047072,"tf":0.023255813953488372},"6404725":{"ref":6404725,"tf":0.0136986301369863},"6412753":{"ref":6412753,"tf":0.023255813953488372},"6414152":{"ref":6414152,"tf":0.0078125},"6414376":{"ref":6414376,"tf":0.02702702702702703},"6414530":{"ref":6414530,"tf":0.005}},")":{"docs":{},".":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414530":{"ref":6414530,"tf":0.005}}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6414152":{"ref":6414152,"tf":0.0078125}}}}},":":{"docs":{},"\"":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"s":{"docs":{},"/":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"/":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}}}}}},"i":{"docs":{"814910":{"ref":814910,"tf":14.32738095238095},"6412334":{"ref":6412334,"tf":20.0125}},".":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"g":{"docs":{"6412334":{"ref":6412334,"tf":0.008333333333333333}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412334":{"ref":6412334,"tf":0.004166666666666667}}}}}}}}}}}},"d":{"docs":{"6413549":{"ref":6413549,"tf":3.350877192982456}}}},"t":{"docs":{},"f":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"6174688":{"ref":6174688,"tf":0.011111111111111112},"6412119":{"ref":6412119,"tf":0.0058823529411764705},"6412566":{"ref":6412566,"tf":0.011627906976744186},"6414782":{"ref":6414782,"tf":0.022727272727272728}},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},".":{"docs":{},"<":{"docs":{},"b":{"docs":{},"r":{"docs":{"6409972":{"ref":6409972,"tf":0.020833333333333332}}}}}}}}}},"?":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6412566":{"ref":6412566,"tf":0.005813953488372093}}}}}}}}}}},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"6413523":{"ref":6413523,"tf":0.0070921985815602835}}}}}}}},"i":{"docs":{},"t":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545},"6411574":{"ref":6411574,"tf":0.02631578947368421},"6412632":{"ref":6412632,"tf":0.005813953488372093}}},"c":{"docs":{},"k":{"docs":{"6412632":{"ref":6412632,"tf":0.005813953488372093}},"l":{"docs":{},"i":{"docs":{"3827055":{"ref":3827055,"tf":0.014705882352941176}}}}}}}},"s":{"docs":{"6412119":{"ref":6412119,"tf":0.0058823529411764705}}}},"_":{"docs":{"5306132":{"ref":5306132,"tf":0.004484304932735426}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413951":{"ref":6413951,"tf":0.011494252873563218}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"6413444":{"ref":6413444,"tf":0.024096385542168676}}},"_":{"docs":{},"_":{"docs":{},"p":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}},"docs":{}},"docs":{}},"2":{"5":{"0":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{},"_":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"4529460":{"ref":4529460,"tf":0.004739336492890996}}}}}}}}}}},"l":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}},"x":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}},"y":{"docs":{"6403354":{"ref":6403354,"tf":0.008130081300813009}}}},"x":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266},"6414438":{"ref":6414438,"tf":0.005434782608695652}},"m":{"docs":{},"l":{"docs":{"3047391":{"ref":3047391,"tf":20},"4272538":{"ref":4272538,"tf":51.666666666666664},"6405964":{"ref":6405964,"tf":22.61111111111111},"6410184":{"ref":6410184,"tf":25.006802721088434},"6413778":{"ref":6413778,"tf":21.25},"6413908":{"ref":6413908,"tf":0.03225806451612903}},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}},"c":{"docs":{},"=":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}},"s":{"docs":{},":":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"f":{"docs":{},"g":{"docs":{},"r":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.00909090909090909}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"s":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"w":{"3":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"2":{"0":{"0":{"1":{"docs":{},"/":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"4272538":{"ref":4272538,"tf":0.004545454545454545}},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"6413908":{"ref":6413908,"tf":0.06451612903225806}},".":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}}}}}}},"=":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6413908":{"ref":6413908,"tf":0.03225806451612903}}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364},"6413908":{"ref":6413908,"tf":22.532258064516128}}}}}}}}}}}}},":":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"e":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"6410184":{"ref":6410184,"tf":0.006802721088435374}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"r":{"docs":{},"d":{"docs":{},"f":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"b":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413720":{"ref":6413720,"tf":0.014814814814814815},"6414105":{"ref":6414105,"tf":0.009523809523809525}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},".":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{},"d":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}},"=":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6413778":{"ref":6413778,"tf":0.018691588785046728}}}}}}}}},"r":{"docs":{"6404725":{"ref":6404725,"tf":0.0136986301369863}},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"6404725":{"ref":6404725,"tf":0.0273972602739726}}}}}}}}}},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}},"s":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":1.2593457943925233}},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"x":{"docs":{},"s":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"6413778":{"ref":6413778,"tf":20.009345794392523}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}},".":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"x":{"docs":{},"s":{"docs":{},"l":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"t":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"x":{"docs":{},"m":{"docs":{},"l":{"docs":{},",":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"6413778":{"ref":6413778,"tf":0.009345794392523364}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"(":{"3":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}},"4":{"docs":{"6412589":{"ref":6412589,"tf":0.012658227848101266}}},"docs":{}}}}}}},"y":{"2":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.005434782608695652}}}}}},"docs":{"6414438":{"ref":6414438,"tf":1.0108695652173914}},"o":{"docs":{},"u":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6414578":{"ref":6414578,"tf":0.029411764705882353}}}}}}},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"6414438":{"ref":6414438,"tf":0.03260869565217391}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"6414123":{"ref":6414123,"tf":0.012195121951219513}}}}}}}},"z":{"0":{"docs":{"6413444":{"ref":6413444,"tf":0.0963855421686747}}},"docs":{"6413416":{"ref":6413416,"tf":1.6969696969696968}},"]":{"docs":{},"{":{"2":{"docs":{},",":{"3":{"docs":{},"}":{"docs":{},")":{"docs":{},"+":{"docs":{},"(":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},"s":{"docs":{},"?":{"docs":{},"[":{"docs":{},",":{"docs":{},"]":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},"s":{"docs":{},"?":{"docs":{},"|":{"docs":{},"$":{"docs":{},")":{"docs":{},")":{"docs":{},"+":{"docs":{},"$":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"?":{"docs":{},"[":{"docs":{},",":{"docs":{},"]":{"docs":{},"\\":{"docs":{},"s":{"docs":{},"?":{"docs":{},"|":{"docs":{},"$":{"docs":{},")":{"docs":{},")":{"docs":{},"+":{"docs":{},"$":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"6413444":{"ref":6413444,"tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"6414093":{"ref":6414093,"tf":0.014705882352941176}}}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"'":{"docs":{},",":{"docs":{},"l":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"+":{"docs":{},"'":{"docs":{},"/":{"docs":{},"/":{"docs":{},"w":{"docs":{},"w":{"docs":{},"w":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"y":{"docs":{},"n":{"docs":{},"b":{"docs":{},"b":{"docs":{},"p":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"?":{"docs":{},"u":{"docs":{},"=":{"docs":{},"'":{"docs":{},"+":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"l":{"docs":{},".":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},")":{"docs":{},"+":{"docs":{},"'":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"t":{"docs":{},"=":{"docs":{},"'":{"docs":{},"+":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"%":{"2":{"0":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"6401696":{"ref":6401696,"tf":0.037037037037037035}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"6412913":{"ref":6412913,"tf":0.012987012987012988}}}}}}}}}}},"length":6247},"corpusTokens":["0","0'","0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0","0....\"px\"$('#international').live(\"click\",funct","code>$_post[\"data1\"]$_post[\"data2\"]<a","code><input","code><tr>(tablewidth","code>).blur(function(length){.blur.length00
:10px[\"data1*abc\",\"data2*abc\",\"data3*abc\",\"data4*abc\",\"data5*abc\",\"data6*abc\"][\"data7*abc\",\"data8*abc\",\"data9*abc\",\"data10*abc\",\"data11*abc\",\"data12*abc\"]aabcajax2.phpclass=\"cell\"class=\"content\"class=\"title\"deploytooldocument.referrerdojo.require('folder.file2');
domain/login.htmldomain/statisticsfs.prototype.myfunc","code>image_name.extension
.indexaindexbjavascriptjquery('#textbox').val();jquerylength","code>lengthmailclassmatlab","code>nanon","code>parseint()ratingcountresources/js/dojo1.6/dojo/dojo.js
resources/js/folder/file2.js
resources/js/pages/file1.js
response.sendredirectshouldoverrideurlloadingsmartphon","code>textboxthisundefined
\"var","code>x.lengthx123.com/123.htmlx123.com/setting.htmlx123.com/setting.html
mi","disconnect","disconnects.herecssextra","em>in","em>javascript.keydownmultilin","em>notshouldtabtemporarilyupdat","h2>html:javascript:johnsd","id","id=\"1","id=\"2","id=\"3","id=\"4","id=\"5","id=\"aaa\"> </td>","id=\"aboutbutton\">","id=\"add","id=\"america","id=\"asia","id=\"assigned_list\">","id=\"available_list\">","id=\"bbb\"> </td>","id=\"brandsbutton\">","id=\"btnget","id=\"button","id=\"careersbutton\">","id=\"cmdsubmitpick","id=\"contactbuttonmenu\">","id=\"context_browser\">","id=\"context_networktype\">","id=\"data__correct","id=\"draggable3","id=\"droppable3","id=\"europ","id=\"fb","id=\"fillsubject","id=\"filt","id=\"filterid'+thi","id=\"filteridal","id=\"filters\"><\\/div>').insertbefore('.filterthi","id=\"formelem1","id=\"formelem2","id=\"fulltxt\">","id=\"head1","id=\"homebutton\">","id=\"img1","id=\"inputbox","id=\"intern","id=\"leavecod","id=\"loginview1","id=\"map_canva","id=\"message\">","id=\"mybook2\">","id=\"nam","id=\"name_first","id=\"name_last","id=\"newdataset","id=\"newsbutton\">","id=\"party\">","id=\"ratings\">","id=\"registerbutton","id=\"searchbox","id=\"shopnowbutton\">","id=\"span_title_'+result_no+'\">'+title+'</span>","id=\"storesbutton\">","id=\"targetfileslist","id=\"tbllottopick\">","id=\"txt1stnum","id=\"txt2ndnum","id=\"txt3rdnum","id=<%=\"node_#{care_point.id","id='<%=dom_id(care_point","id='action'>txt1","id='appmenu'></div>","id='phonescreen'></div>","id='rating${ratingid}'><input","id='reason'>","id=“mylist\">","idea","ideafind","javascript)?keydown keypress al","li>ar","li>how","li>maximum","li>mi","li>minimum","li>mor","li>novnc","li>quirksmod","li>when","lib","librari","lighbox","lightbox","lightbox.\"+user=bob","p>\"0","p>(in","p>**note:just","p>\"test@test.com","p>$(.content).css","p>^([_a","p>whi","p>(+) addrating.scala","p>and but","p>dojo1.6 edit escap","p>example fiddle: from i","p>javascript","p>nb: ratings.html","p>ratingspage.scala","p>solution to update: update what","p>a","p>abov","p>also","p>although","p>am","p>and","p>andani","p>anybodi","p>assum","p>b","p>basic","p>below","p>best","p>btw","p>but","p>button","p>can","p>cheer","p>cheersdid","p>do","p>doe","p>don't","p>due","p>edit","p>edit:ex","p>exampl","p>fieldselect","p>follow","p>for","p>friend","p>function","p>ha","p>hello","p>henc","p>here","p>here'","p>hi","p>how","p>html","p>i","p>i'd","p>i'm","p>i'v","p>if","p>im","p>in","p>it","p>it'","p>it`","p>javascript","p>jqueryjust","p>kklemm","p>let'","p>like","p>mi","p>need","p>new","p>non","p>now","p>obvious","p>oh","p>ok","p>on","p>or","p>p.","p>p.spleas","p>previous","p>quick","p>right","p>say","p>scenario","p>see","p>sent","p>so","p>solut","p>surf","p>take","p>thank","p>thanks!thanks.thanksthe","p>then","p>thi","p>thoughts?three","p>through","p>tri","p>use","p>user=bob","p>we","p>what","p>when","p>where","p>wherea","p>which","p>with","p>without","p>work","p>would","p>you","p>}x123.com/123.html$('#galleri","pre>$('#international').click(funct","pre>$('.myfilter').focus(funct","pre>$('.row').append(\"<tr><td>it","pre>$('sampleelement').animate({'background","pre>$(document).readi","pre>$(document).ready(funct","pre>$(window).blur(funct","pre>$.ajax","pre><!doctyp","pre><?xml","pre>