diff --git a/src/preprocess/links.rs b/src/preprocess/links.rs index 7ca6fd345b..df0eb36fbd 100644 --- a/src/preprocess/links.rs +++ b/src/preprocess/links.rs @@ -89,19 +89,26 @@ where let mut replaced = String::new(); for link in find_links(s) { - replaced.push_str(&s[previous_end_index..link.start_index]); + let before_link = &s[previous_end_index..link.start_index]; + let offset = if let Some(i) = before_link.rfind('\n') { + &before_link[i + 1..] + } else { + "" + }; + replaced.push_str(before_link); match link.render_with_path(&path, chapter_title) { Ok(new_content) => { if depth < MAX_LINK_NESTED_DEPTH { if let Some(rel_path) = link.link_type.relative_path(path) { - replaced.push_str(&replace_all( - &new_content, - rel_path, - source, - depth + 1, - chapter_title, - )); + let v = + replace_all(&new_content, rel_path, source, depth + 1, chapter_title); + let lines = v.split('\n').into_iter().collect::>(); + // no need to add offset for the first line + replaced.push_str(lines[0]); + for line in lines.iter().skip(1) { + replaced.push_str(&format!("\n{}{}", &offset, &line)); + } } else { replaced.push_str(&new_content); } diff --git a/tests/dummy_book/src/first/eqNonEmpty.hs b/tests/dummy_book/src/first/eqNonEmpty.hs new file mode 100644 index 0000000000..31d84f1fa9 --- /dev/null +++ b/tests/dummy_book/src/first/eqNonEmpty.hs @@ -0,0 +1,2 @@ +instance Eq (NonEmpty a) where +eq (NonEmpty x xs) (NonEmpty y ys) = x == y && xs == ys \ No newline at end of file diff --git a/tests/dummy_book/src/first/nested.md b/tests/dummy_book/src/first/nested.md index ae90763a06..cd8d8a3351 100644 --- a/tests/dummy_book/src/first/nested.md +++ b/tests/dummy_book/src/first/nested.md @@ -29,3 +29,17 @@ assert!($TEST_STATUS); ```rust {{#rustdoc_include partially-included-test-with-anchors.rs:rustdoc-include-anchor}} ``` + +## Keep Indent + +1. The following code remains indent: + ```haskell + {{#include ./eqNonEmpty.hs}} + ``` + we ... + + 1. The following code also remains indent: + ```haskell + {{#include ./eqNonEmpty.hs}} + ``` + we ... \ No newline at end of file diff --git a/tests/searchindex_fixture.json b/tests/searchindex_fixture.json index 3d7062d237..5b23560ea6 100644 --- a/tests/searchindex_fixture.json +++ b/tests/searchindex_fixture.json @@ -9,6 +9,7 @@ "first/nested.html#anchors-include-the-part-of-a-file-between-special-comments", "first/nested.html#rustdoc-include-adds-the-rest-of-the-file-as-hidden", "first/nested.html#rustdoc-include-works-with-anchors-too", + "first/nested.html#keep-indent", "first/includes.html#includes", "first/includes.html#summary", "first/recursive.html", @@ -42,62 +43,62 @@ "title": 1 }, "10": { - "body": 19, + "body": 0, "breadcrumbs": 4, "title": 1 }, "11": { + "body": 19, + "breadcrumbs": 4, + "title": 1 + }, + "12": { "body": 44, "breadcrumbs": 3, "title": 2 }, - "12": { + "13": { "body": 3, "breadcrumbs": 5, "title": 2 }, - "13": { + "14": { "body": 4, "breadcrumbs": 4, "title": 1 }, - "14": { + "15": { "body": 12, "breadcrumbs": 4, "title": 1 }, - "15": { + "16": { "body": 2, "breadcrumbs": 4, "title": 1 }, - "16": { + "17": { "body": 3, "breadcrumbs": 4, "title": 1 }, - "17": { + "18": { "body": 29, "breadcrumbs": 6, "title": 3 }, - "18": { + "19": { "body": 6, "breadcrumbs": 3, "title": 2 }, - "19": { - "body": 5, - "breadcrumbs": 6, - "title": 2 - }, "2": { "body": 2, "breadcrumbs": 4, "title": 2 }, "20": { - "body": 0, + "body": 5, "breadcrumbs": 6, "title": 2 }, @@ -112,21 +113,26 @@ "title": 2 }, "23": { + "body": 0, + "breadcrumbs": 6, + "title": 2 + }, + "24": { "body": 20, "breadcrumbs": 4, "title": 2 }, - "24": { + "25": { "body": 18, "breadcrumbs": 9, "title": 5 }, - "25": { + "26": { "body": 0, "breadcrumbs": 5, "title": 1 }, - "26": { + "27": { "body": 3, "breadcrumbs": 2, "title": 1 @@ -162,9 +168,9 @@ "title": 4 }, "9": { - "body": 0, - "breadcrumbs": 4, - "title": 1 + "body": 36, + "breadcrumbs": 6, + "title": 2 } }, "docs": { @@ -181,64 +187,64 @@ "title": "Introduction" }, "10": { + "body": "", + "breadcrumbs": "First Chapter » Includes » Includes", + "id": "10", + "title": "Includes" + }, + "11": { "body": "Dummy Book Introduction First Chapter Nested Chapter Includes Recursive Markdown Unicode No Headers Duplicate Headers Second Chapter Nested Chapter Conclusion", "breadcrumbs": "First Chapter » Includes » Summary", - "id": "10", + "id": "11", "title": "Summary" }, - "11": { + "12": { "body": "Around the world, around the world Around the world, around the world Around the world, around the world Around the world, around the world Around the world, around the world Around the world, around the world Around the world, around the world Around the world, around the world Around the world, around the world Around the world, around the world Around the world, around the world", "breadcrumbs": "First Chapter » Recursive", - "id": "11", + "id": "12", "title": "First Chapter" }, - "12": { + "13": { "body": "Tests for some markdown output.", "breadcrumbs": "First Chapter » Markdown » Markdown tests", - "id": "12", + "id": "13", "title": "Markdown tests" }, - "13": { + "14": { "body": "foo bar baz bim", "breadcrumbs": "First Chapter » Markdown » Tables", - "id": "13", + "id": "14", "title": "Tables" }, - "14": { + "15": { "body": "Footnote example [1] , or with a word [2] . This is a footnote. A longer footnote. With multiple lines. Third line.", "breadcrumbs": "First Chapter » Markdown » Footnotes", - "id": "14", + "id": "15", "title": "Footnotes" }, - "15": { + "16": { "body": "strikethrough example", "breadcrumbs": "First Chapter » Markdown » Strikethrough", - "id": "15", + "id": "16", "title": "Strikethrough" }, - "16": { + "17": { "body": "Apples Broccoli Carrots", "breadcrumbs": "First Chapter » Markdown » Tasklisks", - "id": "16", + "id": "17", "title": "Tasklisks" }, - "17": { + "18": { "body": "Please be careful editing, this contains carefully crafted characters. Two byte character: spatiëring Combining character: spatiëring Three byte character: 书こんにちは Four byte character: 𐌀‮𐌁‮𐌂‮𐌃‮𐌄‮𐌅‮𐌆‮𐌇‮𐌈‬ Right-to-left: مرحبا Emoticons: 🔊 😍 💜 1️⃣ right-to-left mark: hello באמת!‏ Zalgo: ǫ̛̖̱̗̝͈̋͒͋̏ͥͫ̒̆ͩ̏͌̾͊͐ͪ̾̚", "breadcrumbs": "First Chapter » Unicode » Unicode stress tests", - "id": "17", + "id": "18", "title": "Unicode stress tests" }, - "18": { + "19": { "body": "Capybara capybara capybara. Capybara capybara capybara. ThisLongWordIsIncludedSoWeCanCheckThatSufficientlyLongWordsAreOmittedFromTheSearchIndex.", "breadcrumbs": "First Chapter » No Headers", - "id": "18", - "title": "First Chapter" - }, - "19": { - "body": "This page validates behaviour of duplicate headers.", - "breadcrumbs": "First Chapter » Duplicate Headers » Duplicate headers", "id": "19", - "title": "Duplicate headers" + "title": "First Chapter" }, "2": { "body": "more text.", @@ -247,10 +253,10 @@ "title": "First Chapter" }, "20": { - "body": "", - "breadcrumbs": "First Chapter » Duplicate Headers » Header Text", + "body": "This page validates behaviour of duplicate headers.", + "breadcrumbs": "First Chapter » Duplicate Headers » Duplicate headers", "id": "20", - "title": "Header Text" + "title": "Duplicate headers" }, "21": { "body": "", @@ -260,32 +266,38 @@ }, "22": { "body": "", - "breadcrumbs": "First Chapter » Duplicate Headers » header-text", + "breadcrumbs": "First Chapter » Duplicate Headers » Header Text", "id": "22", - "title": "header-text" + "title": "Header Text" }, "23": { + "body": "", + "breadcrumbs": "First Chapter » Duplicate Headers » header-text", + "id": "23", + "title": "header-text" + }, + "24": { "body": "This makes sure you can insert runnable Rust files. fn main() { println!(\"Hello World!\");\n#\n# // You can even hide lines! :D\n# println!(\"I am hidden! Expand the code snippet to see me\");\n}", "breadcrumbs": "Second Chapter » Second Chapter", - "id": "23", + "id": "24", "title": "Second Chapter" }, - "24": { + "25": { "body": "When we link to the first section , it should work on both the print page and the non-print page. A fragment link should work. Link outside . Some image HTML Link", "breadcrumbs": "Second Chapter » Nested Chapter » Testing relative links for the print page", - "id": "24", + "id": "25", "title": "Testing relative links for the print page" }, - "25": { + "26": { "body": "", "breadcrumbs": "Second Chapter » Nested Chapter » Some section", - "id": "25", + "id": "26", "title": "Some section" }, - "26": { + "27": { "body": "I put <HTML> in here!", "breadcrumbs": "Conclusion » Conclusion", - "id": "26", + "id": "27", "title": "Conclusion" }, "3": { @@ -325,13 +337,13 @@ "title": "Rustdoc include works with anchors too" }, "9": { - "body": "", - "breadcrumbs": "First Chapter » Includes » Includes", + "body": "The following code remains indent: instance Eq (NonEmpty a) where\neq (NonEmpty x xs) (NonEmpty y ys) = x == y && xs == ys we ... The following code also remains indent: instance Eq (NonEmpty a) where\neq (NonEmpty x xs) (NonEmpty y ys) = x == y && xs == ys we ...", + "breadcrumbs": "First Chapter » Nested Chapter » Keep Indent", "id": "9", - "title": "Includes" + "title": "Keep Indent" } }, - "length": 27, + "length": 28, "save": true }, "fields": [ @@ -345,10 +357,10 @@ "1": { "df": 2, "docs": { - "14": { + "15": { "tf": 1.0 }, - "17": { + "18": { "tf": 1.0 } } @@ -356,7 +368,7 @@ "2": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -412,7 +424,7 @@ "l": { "df": 1, "docs": { - "16": { + "17": { "tf": 1.0 } } @@ -432,7 +444,7 @@ "d": { "df": 1, "docs": { - "11": { + "12": { "tf": 4.69041575982343 } } @@ -507,7 +519,7 @@ "r": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } } @@ -515,7 +527,7 @@ "z": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } } @@ -545,7 +557,7 @@ "r": { "df": 1, "docs": { - "19": { + "20": { "tf": 1.0 } } @@ -589,7 +601,7 @@ "m": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } } @@ -607,7 +619,7 @@ "0": { "tf": 1.0 }, - "10": { + "11": { "tf": 1.0 } } @@ -619,7 +631,7 @@ "h": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -643,7 +655,7 @@ "i": { "df": 1, "docs": { - "16": { + "17": { "tf": 1.0 } } @@ -683,7 +695,7 @@ "e": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.7320508075688772 } } @@ -707,7 +719,7 @@ "a": { "df": 1, "docs": { - "18": { + "19": { "tf": 2.449489742783178 } } @@ -729,7 +741,7 @@ "e": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } }, @@ -748,7 +760,7 @@ "i": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -767,7 +779,7 @@ "t": { "df": 1, "docs": { - "16": { + "17": { "tf": 1.0 } } @@ -809,19 +821,19 @@ "r": { "df": 6, "docs": { - "10": { + "11": { "tf": 2.0 }, - "11": { + "12": { "tf": 1.0 }, - "18": { + "19": { "tf": 1.0 }, "2": { "tf": 1.0 }, - "23": { + "24": { "tf": 1.0 }, "4": { @@ -840,7 +852,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 2.23606797749979 } } @@ -861,13 +873,16 @@ "df": 0, "docs": {}, "e": { - "df": 2, + "df": 3, "docs": { - "23": { + "24": { "tf": 1.0 }, "4": { "tf": 1.0 + }, + "9": { + "tf": 1.4142135623730951 } } } @@ -884,7 +899,7 @@ "n": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -927,10 +942,10 @@ "s": { "df": 2, "docs": { - "10": { + "11": { "tf": 1.0 }, - "26": { + "27": { "tf": 1.0 } } @@ -950,7 +965,7 @@ "n": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -988,7 +1003,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -1002,7 +1017,7 @@ "d": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } }, @@ -1021,7 +1036,7 @@ "0": { "tf": 1.0 }, - "10": { + "11": { "tf": 1.0 } } @@ -1038,10 +1053,10 @@ "c": { "df": 2, "docs": { - "10": { + "11": { "tf": 1.0 }, - "19": { + "20": { "tf": 1.4142135623730951 } } @@ -1065,7 +1080,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -1093,7 +1108,7 @@ "n": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -1106,6 +1121,14 @@ } } }, + "q": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + } + }, "v": { "df": 0, "docs": {}, @@ -1115,7 +1138,7 @@ "n": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -1135,10 +1158,10 @@ "l": { "df": 2, "docs": { - "14": { + "15": { "tf": 1.0 }, - "15": { + "16": { "tf": 1.0 } } @@ -1156,7 +1179,7 @@ "d": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -1225,7 +1248,7 @@ "0": { "tf": 1.0 }, - "23": { + "24": { "tf": 1.0 }, "4": { @@ -1249,19 +1272,19 @@ "t": { "df": 5, "docs": { - "10": { + "11": { "tf": 1.0 }, - "11": { + "12": { "tf": 1.0 }, - "18": { + "19": { "tf": 1.0 }, "2": { "tf": 1.0 }, - "24": { + "25": { "tf": 1.0 } } @@ -1272,7 +1295,7 @@ "n": { "df": 3, "docs": { - "23": { + "24": { "tf": 1.0 }, "7": { @@ -1286,10 +1309,30 @@ "o": { "df": 0, "docs": {}, + "l": { + "df": 0, + "docs": {}, + "l": { + "df": 0, + "docs": {}, + "o": { + "df": 0, + "docs": {}, + "w": { + "df": 1, + "docs": { + "9": { + "tf": 1.4142135623730951 + } + } + } + } + } + }, "o": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } }, @@ -1305,7 +1348,7 @@ "t": { "df": 1, "docs": { - "14": { + "15": { "tf": 2.0 } } @@ -1320,7 +1363,7 @@ "r": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -1346,7 +1389,7 @@ "t": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -1394,20 +1437,20 @@ "r": { "df": 5, "docs": { - "10": { - "tf": 1.4142135623730951 - }, - "19": { + "11": { "tf": 1.4142135623730951 }, "20": { - "tf": 1.0 + "tf": 1.4142135623730951 }, "21": { "tf": 1.0 }, "22": { "tf": 1.0 + }, + "23": { + "tf": 1.0 } } } @@ -1427,7 +1470,7 @@ "o": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -1451,7 +1494,7 @@ "0": { "tf": 1.0 }, - "26": { + "27": { "tf": 1.0 } } @@ -1469,7 +1512,7 @@ "n": { "df": 2, "docs": { - "23": { + "24": { "tf": 1.0 }, "7": { @@ -1484,7 +1527,7 @@ "e": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -1502,7 +1545,7 @@ "l": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -1520,7 +1563,7 @@ "g": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -1543,6 +1586,9 @@ "10": { "tf": 1.0 }, + "11": { + "tf": 1.0 + }, "6": { "tf": 1.4142135623730951 }, @@ -1551,9 +1597,6 @@ }, "8": { "tf": 1.0 - }, - "9": { - "tf": 1.0 } } }, @@ -1568,6 +1611,18 @@ "e": { "df": 0, "docs": {}, + "n": { + "df": 0, + "docs": {}, + "t": { + "df": 1, + "docs": { + "9": { + "tf": 1.7320508075688772 + } + } + } + }, "x": { "df": 1, "docs": { @@ -1592,12 +1647,32 @@ "t": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } } } + }, + "t": { + "a": { + "df": 0, + "docs": {}, + "n": { + "c": { + "df": 1, + "docs": { + "9": { + "tf": 1.4142135623730951 + } + } + }, + "df": 0, + "docs": {} + } + }, + "df": 0, + "docs": {} } }, "t": { @@ -1644,7 +1719,7 @@ "1": { "tf": 1.0 }, - "10": { + "11": { "tf": 1.0 } } @@ -1697,6 +1772,26 @@ "docs": {} } }, + "k": { + "df": 0, + "docs": {}, + "e": { + "df": 0, + "docs": {}, + "e": { + "df": 0, + "docs": {}, + "p": { + "df": 1, + "docs": { + "9": { + "tf": 1.0 + } + } + } + } + } + }, "l": { "df": 0, "docs": {}, @@ -1709,7 +1804,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.4142135623730951 } } @@ -1725,10 +1820,10 @@ "e": { "df": 3, "docs": { - "14": { + "15": { "tf": 1.4142135623730951 }, - "23": { + "24": { "tf": 1.0 }, "6": { @@ -1739,7 +1834,7 @@ "k": { "df": 1, "docs": { - "24": { + "25": { "tf": 2.23606797749979 } } @@ -1761,7 +1856,7 @@ "r": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -1793,7 +1888,7 @@ "t": { "df": 1, "docs": { - "26": { + "27": { "tf": 1.0 } } @@ -1821,7 +1916,7 @@ "n": { "df": 3, "docs": { - "23": { + "24": { "tf": 1.0 }, "7": { @@ -1839,7 +1934,7 @@ "e": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -1861,10 +1956,10 @@ "n": { "df": 2, "docs": { - "10": { + "11": { "tf": 1.0 }, - "12": { + "13": { "tf": 1.4142135623730951 } } @@ -1874,7 +1969,7 @@ }, "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -1917,7 +2012,7 @@ "l": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -1940,7 +2035,7 @@ "t": { "df": 2, "docs": { - "10": { + "11": { "tf": 1.4142135623730951 }, "4": { @@ -1968,9 +2063,33 @@ "n": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } + }, + "e": { + "df": 0, + "docs": {}, + "m": { + "df": 0, + "docs": {}, + "p": { + "df": 0, + "docs": {}, + "t": { + "df": 0, + "docs": {}, + "i": { + "df": 1, + "docs": { + "9": { + "tf": 2.449489742783178 + } + } + } + } + } + } } } } @@ -1993,7 +2112,7 @@ "t": { "df": 1, "docs": { - "12": { + "13": { "tf": 1.0 } } @@ -2007,7 +2126,7 @@ "d": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -2029,10 +2148,10 @@ "e": { "df": 2, "docs": { - "19": { + "20": { "tf": 1.0 }, - "24": { + "25": { "tf": 1.7320508075688772 } } @@ -2063,7 +2182,7 @@ "s": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -2145,7 +2264,7 @@ "t": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.7320508075688772 } }, @@ -2173,7 +2292,7 @@ "o": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -2185,7 +2304,7 @@ "i": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -2211,7 +2330,7 @@ "t": { "df": 1, "docs": { - "26": { + "27": { "tf": 1.0 } } @@ -2234,7 +2353,7 @@ "s": { "df": 1, "docs": { - "10": { + "11": { "tf": 1.0 } } @@ -2247,11 +2366,31 @@ "l": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } }, + "m": { + "a": { + "df": 0, + "docs": {}, + "i": { + "df": 0, + "docs": {}, + "n": { + "df": 1, + "docs": { + "9": { + "tf": 1.4142135623730951 + } + } + } + } + }, + "df": 0, + "docs": {} + }, "n": { "d": { "df": 0, @@ -2333,7 +2472,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.4142135623730951 } } @@ -2359,7 +2498,7 @@ "l": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -2397,7 +2536,7 @@ }, "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -2419,10 +2558,10 @@ "d": { "df": 2, "docs": { - "10": { + "11": { "tf": 1.0 }, - "23": { + "24": { "tf": 1.0 } } @@ -2443,10 +2582,10 @@ "n": { "df": 4, "docs": { - "24": { + "25": { "tf": 1.0 }, - "25": { + "26": { "tf": 1.0 }, "3": { @@ -2466,7 +2605,7 @@ "e": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -2490,7 +2629,7 @@ "t": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -2607,7 +2746,7 @@ "r": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -2620,7 +2759,7 @@ "r": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -2671,7 +2810,7 @@ "s": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -2708,7 +2847,7 @@ "h": { "df": 1, "docs": { - "15": { + "16": { "tf": 1.4142135623730951 } } @@ -2764,7 +2903,7 @@ "i": { "df": 1, "docs": { - "10": { + "11": { "tf": 1.0 } } @@ -2781,7 +2920,7 @@ "e": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -2797,7 +2936,7 @@ "l": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } } @@ -2823,7 +2962,7 @@ "k": { "df": 1, "docs": { - "16": { + "17": { "tf": 1.0 } } @@ -2861,13 +3000,13 @@ }, "df": 4, "docs": { - "12": { + "13": { "tf": 1.4142135623730951 }, - "17": { + "18": { "tf": 1.0 }, - "24": { + "25": { "tf": 1.0 }, "6": { @@ -2888,14 +3027,14 @@ "2": { "tf": 1.0 }, - "20": { - "tf": 1.0 - }, "21": { "tf": 1.0 }, "22": { "tf": 1.0 + }, + "23": { + "tf": 1.0 } } } @@ -2911,7 +3050,7 @@ "d": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -2929,7 +3068,7 @@ "e": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -2943,7 +3082,7 @@ "o": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -2964,10 +3103,10 @@ "d": { "df": 2, "docs": { - "10": { + "11": { "tf": 1.0 }, - "17": { + "18": { "tf": 1.0 } } @@ -3004,7 +3143,7 @@ "d": { "df": 1, "docs": { - "19": { + "20": { "tf": 1.0 } } @@ -3039,7 +3178,7 @@ "d": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -3049,7 +3188,7 @@ "k": { "df": 2, "docs": { - "24": { + "25": { "tf": 1.4142135623730951 }, "8": { @@ -3061,10 +3200,10 @@ "d": { "df": 2, "docs": { - "11": { + "12": { "tf": 4.69041575982343 }, - "23": { + "24": { "tf": 1.0 } } @@ -3075,6 +3214,38 @@ } } }, + "x": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + }, + "s": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + } + } + }, + "y": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + }, + "s": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + } + } + }, "z": { "a": { "df": 0, @@ -3088,7 +3259,7 @@ "o": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -3106,10 +3277,10 @@ "1": { "df": 2, "docs": { - "14": { + "15": { "tf": 1.0 }, - "17": { + "18": { "tf": 1.0 } } @@ -3117,7 +3288,7 @@ "2": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -3173,7 +3344,7 @@ "l": { "df": 1, "docs": { - "16": { + "17": { "tf": 1.0 } } @@ -3193,7 +3364,7 @@ "d": { "df": 1, "docs": { - "11": { + "12": { "tf": 4.69041575982343 } } @@ -3268,7 +3439,7 @@ "r": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } } @@ -3276,7 +3447,7 @@ "z": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } } @@ -3306,7 +3477,7 @@ "r": { "df": 1, "docs": { - "19": { + "20": { "tf": 1.0 } } @@ -3350,7 +3521,7 @@ "m": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } } @@ -3368,7 +3539,7 @@ "0": { "tf": 1.7320508075688772 }, - "10": { + "11": { "tf": 1.0 } } @@ -3380,7 +3551,7 @@ "h": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -3404,7 +3575,7 @@ "i": { "df": 1, "docs": { - "16": { + "17": { "tf": 1.0 } } @@ -3444,7 +3615,7 @@ "e": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.7320508075688772 } } @@ -3468,7 +3639,7 @@ "a": { "df": 1, "docs": { - "18": { + "19": { "tf": 2.449489742783178 } } @@ -3490,7 +3661,7 @@ "e": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } }, @@ -3509,7 +3680,7 @@ "i": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -3528,7 +3699,7 @@ "t": { "df": 1, "docs": { - "16": { + "17": { "tf": 1.0 } } @@ -3568,16 +3739,16 @@ "df": 0, "docs": {}, "r": { - "df": 24, + "df": 25, "docs": { "10": { - "tf": 2.23606797749979 + "tf": 1.0 }, "11": { - "tf": 1.4142135623730951 + "tf": 2.23606797749979 }, "12": { - "tf": 1.0 + "tf": 1.4142135623730951 }, "13": { "tf": 1.0 @@ -3595,10 +3766,10 @@ "tf": 1.0 }, "18": { - "tf": 1.4142135623730951 + "tf": 1.0 }, "19": { - "tf": 1.0 + "tf": 1.4142135623730951 }, "2": { "tf": 1.7320508075688772 @@ -3613,14 +3784,17 @@ "tf": 1.0 }, "23": { - "tf": 1.7320508075688772 + "tf": 1.0 }, "24": { - "tf": 1.4142135623730951 + "tf": 1.7320508075688772 }, "25": { "tf": 1.4142135623730951 }, + "26": { + "tf": 1.4142135623730951 + }, "3": { "tf": 1.0 }, @@ -3640,7 +3814,7 @@ "tf": 1.4142135623730951 }, "9": { - "tf": 1.0 + "tf": 1.4142135623730951 } } } @@ -3655,7 +3829,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 2.23606797749979 } } @@ -3676,13 +3850,16 @@ "df": 0, "docs": {}, "e": { - "df": 2, + "df": 3, "docs": { - "23": { + "24": { "tf": 1.0 }, "4": { "tf": 1.0 + }, + "9": { + "tf": 1.4142135623730951 } } } @@ -3699,7 +3876,7 @@ "n": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -3742,10 +3919,10 @@ "s": { "df": 2, "docs": { - "10": { + "11": { "tf": 1.0 }, - "26": { + "27": { "tf": 1.7320508075688772 } } @@ -3765,7 +3942,7 @@ "n": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -3803,7 +3980,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -3817,7 +3994,7 @@ "d": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } }, @@ -3836,7 +4013,7 @@ "0": { "tf": 1.7320508075688772 }, - "10": { + "11": { "tf": 1.0 } } @@ -3853,20 +4030,20 @@ "c": { "df": 5, "docs": { - "10": { + "11": { "tf": 1.0 }, - "19": { - "tf": 2.0 - }, "20": { - "tf": 1.0 + "tf": 2.0 }, "21": { "tf": 1.0 }, "22": { "tf": 1.0 + }, + "23": { + "tf": 1.0 } } }, @@ -3889,7 +4066,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -3917,7 +4094,7 @@ "n": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -3930,6 +4107,14 @@ } } }, + "q": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + } + }, "v": { "df": 0, "docs": {}, @@ -3939,7 +4124,7 @@ "n": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -3959,10 +4144,10 @@ "l": { "df": 2, "docs": { - "14": { + "15": { "tf": 1.0 }, - "15": { + "16": { "tf": 1.0 } } @@ -3980,7 +4165,7 @@ "d": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -4049,7 +4234,7 @@ "0": { "tf": 1.0 }, - "23": { + "24": { "tf": 1.0 }, "4": { @@ -4071,16 +4256,16 @@ "df": 0, "docs": {}, "t": { - "df": 22, + "df": 23, "docs": { "10": { - "tf": 1.4142135623730951 + "tf": 1.0 }, "11": { "tf": 1.4142135623730951 }, "12": { - "tf": 1.0 + "tf": 1.4142135623730951 }, "13": { "tf": 1.0 @@ -4098,10 +4283,10 @@ "tf": 1.0 }, "18": { - "tf": 1.4142135623730951 + "tf": 1.0 }, "19": { - "tf": 1.0 + "tf": 1.4142135623730951 }, "2": { "tf": 1.7320508075688772 @@ -4115,7 +4300,10 @@ "22": { "tf": 1.0 }, - "24": { + "23": { + "tf": 1.0 + }, + "25": { "tf": 1.0 }, "3": { @@ -4147,7 +4335,7 @@ "n": { "df": 3, "docs": { - "23": { + "24": { "tf": 1.0 }, "7": { @@ -4161,10 +4349,30 @@ "o": { "df": 0, "docs": {}, + "l": { + "df": 0, + "docs": {}, + "l": { + "df": 0, + "docs": {}, + "o": { + "df": 0, + "docs": {}, + "w": { + "df": 1, + "docs": { + "9": { + "tf": 1.4142135623730951 + } + } + } + } + } + }, "o": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } }, @@ -4180,7 +4388,7 @@ "t": { "df": 1, "docs": { - "14": { + "15": { "tf": 2.23606797749979 } } @@ -4195,7 +4403,7 @@ "r": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -4221,7 +4429,7 @@ "t": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -4269,23 +4477,23 @@ "r": { "df": 6, "docs": { - "10": { + "11": { "tf": 1.4142135623730951 }, - "18": { - "tf": 1.0 - }, "19": { - "tf": 2.0 + "tf": 1.0 }, "20": { - "tf": 1.7320508075688772 + "tf": 2.0 }, "21": { "tf": 1.7320508075688772 }, "22": { "tf": 1.7320508075688772 + }, + "23": { + "tf": 1.7320508075688772 } } } @@ -4305,7 +4513,7 @@ "o": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -4329,7 +4537,7 @@ "0": { "tf": 1.0 }, - "26": { + "27": { "tf": 1.0 } } @@ -4347,7 +4555,7 @@ "n": { "df": 2, "docs": { - "23": { + "24": { "tf": 1.0 }, "7": { @@ -4362,7 +4570,7 @@ "e": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -4380,7 +4588,7 @@ "l": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -4398,7 +4606,7 @@ "g": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -4419,6 +4627,9 @@ "df": 5, "docs": { "10": { + "tf": 1.7320508075688772 + }, + "11": { "tf": 1.4142135623730951 }, "6": { @@ -4429,9 +4640,6 @@ }, "8": { "tf": 1.4142135623730951 - }, - "9": { - "tf": 1.7320508075688772 } } }, @@ -4446,6 +4654,18 @@ "e": { "df": 0, "docs": {}, + "n": { + "df": 0, + "docs": {}, + "t": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + } + } + }, "x": { "df": 1, "docs": { @@ -4470,12 +4690,32 @@ "t": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } } } + }, + "t": { + "a": { + "df": 0, + "docs": {}, + "n": { + "c": { + "df": 1, + "docs": { + "9": { + "tf": 1.4142135623730951 + } + } + }, + "df": 0, + "docs": {} + } + }, + "df": 0, + "docs": {} } }, "t": { @@ -4522,7 +4762,7 @@ "1": { "tf": 1.7320508075688772 }, - "10": { + "11": { "tf": 1.0 } } @@ -4575,6 +4815,26 @@ "docs": {} } }, + "k": { + "df": 0, + "docs": {}, + "e": { + "df": 0, + "docs": {}, + "e": { + "df": 0, + "docs": {}, + "p": { + "df": 1, + "docs": { + "9": { + "tf": 1.4142135623730951 + } + } + } + } + } + }, "l": { "df": 0, "docs": {}, @@ -4587,7 +4847,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.4142135623730951 } } @@ -4603,10 +4863,10 @@ "e": { "df": 3, "docs": { - "14": { + "15": { "tf": 1.4142135623730951 }, - "23": { + "24": { "tf": 1.0 }, "6": { @@ -4617,7 +4877,7 @@ "k": { "df": 1, "docs": { - "24": { + "25": { "tf": 2.449489742783178 } } @@ -4639,7 +4899,7 @@ "r": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -4671,7 +4931,7 @@ "t": { "df": 1, "docs": { - "26": { + "27": { "tf": 1.0 } } @@ -4699,7 +4959,7 @@ "n": { "df": 3, "docs": { - "23": { + "24": { "tf": 1.0 }, "7": { @@ -4717,7 +4977,7 @@ "e": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -4739,14 +4999,11 @@ "n": { "df": 6, "docs": { - "10": { + "11": { "tf": 1.0 }, - "12": { - "tf": 2.0 - }, "13": { - "tf": 1.0 + "tf": 2.0 }, "14": { "tf": 1.0 @@ -4756,6 +5013,9 @@ }, "16": { "tf": 1.0 + }, + "17": { + "tf": 1.0 } } } @@ -4764,7 +5024,7 @@ }, "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -4807,7 +5067,7 @@ "l": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -4828,15 +5088,15 @@ "df": 0, "docs": {}, "t": { - "df": 8, + "df": 9, "docs": { - "10": { + "11": { "tf": 1.4142135623730951 }, - "24": { + "25": { "tf": 1.0 }, - "25": { + "26": { "tf": 1.0 }, "4": { @@ -4853,6 +5113,9 @@ }, "8": { "tf": 1.0 + }, + "9": { + "tf": 1.0 } } } @@ -4876,9 +5139,33 @@ "n": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } + }, + "e": { + "df": 0, + "docs": {}, + "m": { + "df": 0, + "docs": {}, + "p": { + "df": 0, + "docs": {}, + "t": { + "df": 0, + "docs": {}, + "i": { + "df": 1, + "docs": { + "9": { + "tf": 2.449489742783178 + } + } + } + } + } + } } } } @@ -4901,7 +5188,7 @@ "t": { "df": 1, "docs": { - "12": { + "13": { "tf": 1.0 } } @@ -4915,7 +5202,7 @@ "d": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -4937,10 +5224,10 @@ "e": { "df": 2, "docs": { - "19": { + "20": { "tf": 1.0 }, - "24": { + "25": { "tf": 2.0 } } @@ -4971,7 +5258,7 @@ "s": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -5053,7 +5340,7 @@ "t": { "df": 1, "docs": { - "24": { + "25": { "tf": 2.0 } }, @@ -5081,7 +5368,7 @@ "o": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -5093,7 +5380,7 @@ "i": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -5119,7 +5406,7 @@ "t": { "df": 1, "docs": { - "26": { + "27": { "tf": 1.0 } } @@ -5142,10 +5429,10 @@ "s": { "df": 2, "docs": { - "10": { + "11": { "tf": 1.0 }, - "11": { + "12": { "tf": 1.0 } } @@ -5158,11 +5445,31 @@ "l": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.4142135623730951 } } }, + "m": { + "a": { + "df": 0, + "docs": {}, + "i": { + "df": 0, + "docs": {}, + "n": { + "df": 1, + "docs": { + "9": { + "tf": 1.4142135623730951 + } + } + } + } + }, + "df": 0, + "docs": {} + }, "n": { "d": { "df": 0, @@ -5244,7 +5551,7 @@ "t": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.4142135623730951 } } @@ -5270,7 +5577,7 @@ "l": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -5308,7 +5615,7 @@ }, "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -5330,16 +5637,16 @@ "d": { "df": 4, "docs": { - "10": { + "11": { "tf": 1.0 }, - "23": { + "24": { "tf": 1.7320508075688772 }, - "24": { + "25": { "tf": 1.0 }, - "25": { + "26": { "tf": 1.0 } } @@ -5360,10 +5667,10 @@ "n": { "df": 4, "docs": { - "24": { + "25": { "tf": 1.0 }, - "25": { + "26": { "tf": 1.4142135623730951 }, "3": { @@ -5383,7 +5690,7 @@ "e": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -5407,7 +5714,7 @@ "t": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -5524,7 +5831,7 @@ "r": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -5537,7 +5844,7 @@ "r": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -5588,7 +5895,7 @@ "s": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.4142135623730951 } } @@ -5625,7 +5932,7 @@ "h": { "df": 1, "docs": { - "15": { + "16": { "tf": 1.7320508075688772 } } @@ -5681,7 +5988,7 @@ "i": { "df": 1, "docs": { - "10": { + "11": { "tf": 1.4142135623730951 } } @@ -5698,7 +6005,7 @@ "e": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -5714,7 +6021,7 @@ "l": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.4142135623730951 } } @@ -5740,7 +6047,7 @@ "k": { "df": 1, "docs": { - "16": { + "17": { "tf": 1.4142135623730951 } } @@ -5778,13 +6085,13 @@ }, "df": 4, "docs": { - "12": { + "13": { "tf": 1.7320508075688772 }, - "17": { + "18": { "tf": 1.4142135623730951 }, - "24": { + "25": { "tf": 1.4142135623730951 }, "6": { @@ -5805,14 +6112,14 @@ "2": { "tf": 1.0 }, - "20": { - "tf": 1.4142135623730951 - }, "21": { "tf": 1.4142135623730951 }, "22": { "tf": 1.4142135623730951 + }, + "23": { + "tf": 1.4142135623730951 } } } @@ -5828,7 +6135,7 @@ "d": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -5846,7 +6153,7 @@ "e": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -5860,7 +6167,7 @@ "o": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -5881,10 +6188,10 @@ "d": { "df": 2, "docs": { - "10": { + "11": { "tf": 1.0 }, - "17": { + "18": { "tf": 1.7320508075688772 } } @@ -5921,7 +6228,7 @@ "d": { "df": 1, "docs": { - "19": { + "20": { "tf": 1.0 } } @@ -5956,7 +6263,7 @@ "d": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -5966,7 +6273,7 @@ "k": { "df": 2, "docs": { - "24": { + "25": { "tf": 1.4142135623730951 }, "8": { @@ -5978,10 +6285,10 @@ "d": { "df": 2, "docs": { - "11": { + "12": { "tf": 4.69041575982343 }, - "23": { + "24": { "tf": 1.0 } } @@ -5992,6 +6299,38 @@ } } }, + "x": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + }, + "s": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + } + } + }, + "y": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + }, + "s": { + "df": 1, + "docs": { + "9": { + "tf": 2.0 + } + } + } + }, "z": { "a": { "df": 0, @@ -6005,7 +6344,7 @@ "o": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -6130,16 +6469,16 @@ "r": { "df": 5, "docs": { - "11": { + "12": { "tf": 1.0 }, - "18": { + "19": { "tf": 1.0 }, "2": { "tf": 1.0 }, - "23": { + "24": { "tf": 1.0 }, "4": { @@ -6194,7 +6533,7 @@ "s": { "df": 1, "docs": { - "26": { + "27": { "tf": 1.0 } } @@ -6239,7 +6578,7 @@ "c": { "df": 1, "docs": { - "19": { + "20": { "tf": 1.0 } } @@ -6283,10 +6622,10 @@ "t": { "df": 3, "docs": { - "11": { + "12": { "tf": 1.0 }, - "18": { + "19": { "tf": 1.0 }, "2": { @@ -6315,7 +6654,7 @@ "t": { "df": 1, "docs": { - "14": { + "15": { "tf": 1.0 } } @@ -6340,9 +6679,6 @@ "r": { "df": 4, "docs": { - "19": { - "tf": 1.0 - }, "20": { "tf": 1.0 }, @@ -6351,6 +6687,9 @@ }, "22": { "tf": 1.0 + }, + "23": { + "tf": 1.0 } } } @@ -6401,6 +6740,9 @@ "d": { "df": 4, "docs": { + "10": { + "tf": 1.0 + }, "6": { "tf": 1.0 }, @@ -6409,9 +6751,6 @@ }, "8": { "tf": 1.0 - }, - "9": { - "tf": 1.0 } } }, @@ -6420,6 +6759,26 @@ } } }, + "d": { + "df": 0, + "docs": {}, + "e": { + "df": 0, + "docs": {}, + "n": { + "df": 0, + "docs": {}, + "t": { + "df": 1, + "docs": { + "9": { + "tf": 1.0 + } + } + } + } + } + }, "df": 0, "docs": {}, "t": { @@ -6456,6 +6815,26 @@ } } }, + "k": { + "df": 0, + "docs": {}, + "e": { + "df": 0, + "docs": {}, + "e": { + "df": 0, + "docs": {}, + "p": { + "df": 1, + "docs": { + "9": { + "tf": 1.0 + } + } + } + } + } + }, "l": { "df": 0, "docs": {}, @@ -6468,7 +6847,7 @@ "k": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -6496,7 +6875,7 @@ "n": { "df": 1, "docs": { - "12": { + "13": { "tf": 1.0 } } @@ -6542,7 +6921,7 @@ "e": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -6575,7 +6954,7 @@ "t": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -6593,7 +6972,7 @@ "l": { "df": 1, "docs": { - "24": { + "25": { "tf": 1.0 } } @@ -6657,7 +7036,7 @@ "d": { "df": 1, "docs": { - "23": { + "24": { "tf": 1.0 } } @@ -6678,7 +7057,7 @@ "n": { "df": 3, "docs": { - "25": { + "26": { "tf": 1.0 }, "3": { @@ -6739,7 +7118,7 @@ "s": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } } @@ -6776,7 +7155,7 @@ "h": { "df": 1, "docs": { - "15": { + "16": { "tf": 1.0 } } @@ -6808,7 +7187,7 @@ "i": { "df": 1, "docs": { - "10": { + "11": { "tf": 1.0 } } @@ -6829,7 +7208,7 @@ "l": { "df": 1, "docs": { - "13": { + "14": { "tf": 1.0 } } @@ -6855,7 +7234,7 @@ "k": { "df": 1, "docs": { - "16": { + "17": { "tf": 1.0 } } @@ -6877,13 +7256,13 @@ "t": { "df": 3, "docs": { - "12": { + "13": { "tf": 1.0 }, - "17": { + "18": { "tf": 1.0 }, - "24": { + "25": { "tf": 1.0 } } @@ -6895,14 +7274,14 @@ "t": { "df": 3, "docs": { - "20": { - "tf": 1.0 - }, "21": { "tf": 1.0 }, "22": { "tf": 1.0 + }, + "23": { + "tf": 1.0 } } } @@ -6923,7 +7302,7 @@ "d": { "df": 1, "docs": { - "17": { + "18": { "tf": 1.0 } }